Ove Bastiansen

Results 16 comments of Ove Bastiansen

After more debugging I have found these two different cases dotnet test --filter "FullyQualifiedName=TestFixtureSourceError.TestsBroken(Windows Edgium).Test1" throws an exception from TfsTestCaseFilterExpression with the text Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException: 'Incorrect format for TestCaseFilter Missing Operator...

Oh my bad, I notice a typo in my last comment The command that works is dotnet test --filter "FullyQualifiedName=TestFixtureSourceError.TestsBroken\(Windows Edgium\).Test1" So by escaping the () when creating the filter...

There is no typo, just github is properly sanitizing statements ;) dotnet test --filter "FullyQualifiedName=TestFixtureSourceError.TestsBroken\\(Windows Edgium\\).Test1" Needed double \\\\ to get it to properly show what I mean

VS works out of the box currently, but dotnet with filter does not work dotnet test with no filter picks up three tests, but adding filter with the fqn needs...

https://github.com/nunit/nunit3-vs-adapter/blob/master/src/NUnitTestAdapter/NUnit3TestExecutor.cs The comments here are actually still valid ;) One method is called from the commandline and from tfs build and another is called when running from visual studio. The...

The thing is that I want the feature of portsharing with both http and net.tcp, so actually I need to run net.tcp with http.sys. Is that possible?

As long as I can portshare on both http and net.tcp then any approach would work. And based on how middlewares and servicebehaviours work, that might be that two instances...

Are you sure there aren't any changed types in the picture here. Did it start out as a Task and then the type was changed to User Story during the...

I am not sure if it is related, but I was getting "half" testplans, only the id and nothing else. So I made this change and pushed it out now,...