Forum member

marwinge

4 posts

Posts by marwinge

  1. Failing on test discovery if using IXunitSerializable in xUnit tests

    I am struggling to understand if there is something I could do or not to have unique names with xUnit and ClassData. After trying different things for hours; I now have this very small setup: The test: [Theory] [ClassData(typeof(MyTestCase))] public void FigureItOut(MyT…

  2. Copy additional files also need CopyReferencedAssembliesToWorkspace

    Thank you for your investigations. I can confirm that I am using the latest version. I can also confirm that it only affects the grid nodes. To have the tests successfully run (it builds on grid nodes, but the tests fails with a message saying that it cant find the e_sqlite3.dll) on a grid node I…

  3. Copy additional files also need CopyReferencedAssembliesToWorkspace

    Thanks for getting back to me! It is a public nuget package; SQLitePCLRaw.bundle_green The test project is a net core application targeting net462, using PackageReferences. Here are the csproj file (removed package references that is not related to this problem): <Project Sdk="Microsoft.NET…

  4. Copy additional files also need CopyReferencedAssembliesToWorkspace

    Hi! I am using a grid node server for this scenario. I am referencing a nuGet package that have a dll that my integration test need to run. This dll is added in a sub-folder of bin (\bin\x64\Debug\net462\x64) when building the test project locally with Visual Studio. This does not happen when …