ExpressionToCodeLib 1.5.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package ExpressionToCodeLib --version 1.5.1
NuGet\Install-Package ExpressionToCodeLib -Version 1.5.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ExpressionToCodeLib" Version="1.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ExpressionToCodeLib --version 1.5.1
#r "nuget: ExpressionToCodeLib, 1.5.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ExpressionToCodeLib as a Cake Addin
#addin nuget:?package=ExpressionToCodeLib&version=1.5.1

// Install ExpressionToCodeLib as a Cake Tool
#tool nuget:?package=ExpressionToCodeLib&version=1.5.1

Generates valid, readable C# from an expression tree, and can annotate that code with runtime values. This can
     be useful for code generation and for unit testing: ExpressionToCode detects NUnit, xUnit.NET and MSTest and
     uses their assertions if available, and a normal Exception otherwise (so it runs fine outside those specific unit
     testing frameworks too).

ExpressionToCode was inspired by Power Asssert.NET. It differs from PowerAssert.NET by supporting a much larger
     portion of the lambda syntax and to respect C#'s normal operator precedence, in addition to general polish.

Product Compatible and additional computed target framework versions.
.NET Framework net40-client is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (8)

Showing the top 5 NuGet packages that depend on ExpressionToCodeLib:

Package Downloads
TestBase

*TestBase* gives you a flying start with - fluent assertions that are easy to extend - sharp error messages - tools to help you test with “heavyweight” dependencies on - AspNetCore.Mvc, AspNet.Mvc or WebApi Contexts - HttpClient - Ado.Net - Streams & Logging - Mix & match with your favourite test runners & assertions. ``` UnitUnderTest.Action() .ShouldNotBeNull() .ShouldEqualByValueExceptFor(new {Id=1, Descr=expected}, ignoreList ) .Payload .ShouldMatchIgnoringCase("I expected this") .Should(someOtherPredicate); .Items .ShouldAll(predicate) .ShouldContain(item) .ShouldNotContain(predicate) .Where(predicate) .SingleOrAssertFail() .ShouldEqualByValue().ShouldEqualByValueExceptFor(...).ShouldEqualByValueOnMembers() work with all kinds of object and collections, and report what differed. string.ShouldMatch(pattern).ShouldNotMatch().ShouldBeEmpty().ShouldNotBeEmpty() .ShouldNotBeNullOrEmptyOrWhiteSpace().ShouldEqualIgnoringCase() .ShouldContain().ShouldStartWith().ShouldEndWith().ShouldBeContainedIn(), ... numeric.ShouldBeBetween().ShouldEqualWithTolerance()....GreaterThan....LessThan...GreaterOrEqualTo ... ienumerable.ShouldAll().ShouldContain().ShouldNotContain().ShouldBeEmpty().ShouldNotBeEmpty() ... stream.ShouldHaveSameStreamContentAs().ShouldContain() value.ShouldBe().ShouldNotBe().ShouldBeOfType().ShouldBeAssignableTo()... ``` TestBase.HttpClient.Fake ``` new FakeHttpClient() .Setup(x=>x.RequestUri.PathAndQuery.StartsWith("/this")) .Returns(response) .Setup(x=>x.Method==HttpMethod.Put) .Returns(new HttpResponseMessage(HttpStatusCode.Accepted)); ``` TestBase.AdoNet ------------------ `FakeDbConnection` ``` - db.SetupForQuery(…) - db.SetupForExecuteNonQuery(…) - db.ShouldHaveUpdated("tableName", …) - db.ShouldHaveSelected("tableName", …) - db.ShouldHaveDeleted("tableName", …) - db.Verify( x=>x.CommandText.Matches("Insert [case] .*") && x.Parameters["id"].Value==1 ) - db .ShouldHaveInvoked(cmd => predicate(cmd)) .ShouldHaveParameter("name", value) ``` `RecordingDbConnection` TestBase.Mvc.AspNetCore & TestBase.Mvc for Mvc 4 & Mvc 5 -------------------------------------------------------- ``` ControllerUnderTest.WithControllerContext() .Action() .ShouldbeViewResult() .ShouldHaveModel<TModel>() .ShouldEqualByValue(expected) ControllerUnderTest.Action() .ShouldBeRedirectToRouteResult() .ShouldHaveRouteValue("expectedKey", [Optional] "expectedValue"); ShouldHaveViewDataContaining(), ShouldBeJsonResult() etc. ``` - Test AspNetCore controllers with zero setup using `controllerUnderTest.WithControllerContext(actionUnderTest)` - Test more complex AspNetCore controller/application dependencies using `HostedMvcTestFixtureBase` and specify your MVCApplications `Startup` class. ``` [TestCase("/dummy")] public async Task Put_Should_ReturnA(string url) { var httpClient=GivenClientForRunningServer<Startup>(); GivenRequestHeaders(httpClient, "CustomHeader", "HeaderValue1"); var result = await httpClient.PutAsync(url, json); result.ShouldBe_202Accepted(); } ``` For Mvc4 and Mvc 5, fake your http request &amp; context, and use the `RegisterRoutes` method of your actual application to set up `Controller.Url` ``` ControllerUnderTest .WithHttpContextAndRoutes( RouteConfig.RegisterRoutes, "/incomingurl" ); ApiControllerUnderTest.WithWebApiHttpContext<T>( httpMethod, requestUri, routeTemplate) ``` Testable Logging ``` // Extensions.Logging.ListOfString var log = new List<String>(); ILogger mslogger= new LoggerFactory().AddStringListLogger(log).CreateLogger("Test2"); // Serilog.Sinks.ListOfString Serilog.Logger slogger= new LoggerConfiguration().WriteTo.StringList(log).CreateLogger(); ```

ProgressOnderwijsUtils

Collection of utilities developed by ProgressOnderwijs

TestBase.AdoNet

TestBase.AdoNet TestBase.FakeDb ------------------ Fake and verify AdoNet queries and commands ``` - fakeDbConnection.SetupForQuery(IEnumerable<TFakeData>; ) - fakeDbConnection.SetupForQuery(IEnumerable<Tuple<TFakeDataForTable1,TFakeDataForTable2>> ) - fakeDbConnection.SetupForQuery(fakeData, new[] {"FieldName1", FieldName2"}) - fakeDbConnection.SetupForExecuteNonQuery(rowsAffected) - fakeDbConnection.ShouldHaveUpdated("tableName", [Optional] fieldList, whereClauseField) - fakeDbConnection.ShouldHaveSelected("tableName", [Optional] fieldList, whereClauseField) - fakeDbConnection.ShouldHaveUpdated("tableName", [Optional] fieldList, whereClauseField) - fakeDbConnection.ShouldHaveDeleted("tableName", whereClauseField) - fakeDbConnection.ShouldHaveInvoked(cmd => predicate(cmd)) - fakeDbConnection.ShouldHaveExecutedStoredProcedure("name") - fakeDbConnection.ShouldHaveXXX().ShouldHaveParameter("name", value) - fakeDbConnection.Verify(x=>x.CommandText.Matches("Insert [case] .*") && x.Parameters["id"].Value==1) ``` TestBase.RecordingDb -------------------- * `new RecordingDbConnection(IDbConnection)` helps you profile Ado.Net Db calls See also - TestBase - TestBase.Mvc - TestBase.AdoNet - Serilog.Sinks.ListOfString - Extensions.Logging.ListOfString

ExpressiveAssertions

Flexible assertion library leveraging the .NET expression tree syntax

FranSync.DependencyInjection.WindsorCastle

FranSync.Configuration

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.5.0 7,159 8/19/2022
3.4.1 1,025 5/23/2022
3.4.0 11,591 2/21/2021
3.3.0 31,637 9/12/2019
3.2.0 16,512 2/10/2019
3.1.0 23,049 7/10/2018
3.1.0-alpha 1,543 7/10/2018
3.0.0 11,963 6/27/2018
3.0.0-beta1 1,512 6/26/2018
3.0.0-alpha4 1,415 6/15/2018
3.0.0-alpha3 1,509 6/15/2018
3.0.0-alpha2 1,504 6/12/2018
3.0.0-alpha1 1,469 6/3/2018
2.7.0 100,007 2/19/2018
2.6.0 1,775 2/16/2018
2.6.0-signed 1,628 2/16/2018
2.5.1 13,773 10/30/2017
2.5.0 2,012 9/20/2017
2.4.1 1,716 8/23/2017
2.4.0 2,001 6/1/2017
2.3.0 1,695 6/1/2017
2.2.0 1,692 5/10/2017
2.1.0 1,775 5/5/2017
2.0.0 2,826 4/26/2017
2.0.0-beta7 1,503 4/10/2017
2.0.0-beta6 1,424 3/30/2017
2.0.0-beta5 1,473 3/30/2017
2.0.0-beta4 1,487 3/26/2017
2.0.0-beta3 1,519 3/26/2017
2.0.0-beta2 1,548 1/25/2017
2.0.0-alpha9 1,569 1/25/2017
2.0.0-alpha6 2,512 7/29/2016
2.0.0-alpha4 2,191 2/24/2016
2.0.0-alpha 1,770 2/7/2016
1.5.4 39,227 7/7/2015
1.5.3 3,647 6/15/2015
1.5.2 7,264 3/22/2015
1.5.1 2,023 3/10/2015
1.5.0 2,153 3/7/2015
1.4.8 2,631 1/21/2015
1.4.7 1,984 1/11/2015
1.4.6 4,048 8/30/2014
1.4.5 5,962 5/29/2014
1.4.4 7,666 4/9/2013
1.4.3 2,021 4/5/2013
1.4.2 1,974 3/29/2013
1.4.1 1,968 3/26/2013
1.4.0 1,966 3/12/2013
1.3.0 2,055 3/11/2013
1.2.0 1,904 3/8/2013
1.1.0.1 2,005 3/7/2013
1.1.0 1,972 3/7/2013

Added basic support for expressions with blocks such as "x => { x += 3; return x*2; }"