I am studying packtpub's entity framework core cookbook on unit test, there is an example (I made some change)
[Fact]
public void CanCreateDatabase()
{
var blogContext = new BlogContext(_builder.Options);
var created =…
I initially started a WebAPI project using the ASP.NET Core 1.0 template and was trying to do everything with dnx451 and dnxcore50 specified in all project.json files across the solution.
I recently gave up on using anything related to dnxcore due…
So i had this working, ive switched to paket and i guess some versions of dll's have changed.
However I still do not understand the error i am getting.
System.ArgumentException : LoggerName already in use
Parameter name: loggerName
my code is…
I have a test method with the following signature:
public void TheBigTest(MyClass data, decimal result)
{
And I'd like to run this in XUnit 2.1. I've got my CalculationData class all set up and that works if I remove the second parameter. But when…