CharliePoole

Results 1012 comments of CharliePoole

I spoke too soon. It appeared to work at first, most likely because I didn't scroll far enough. I just found the "Debug" context menu, so I'll experiment some more.

Looks as if the built-in filter catches about half of the sponsored posts in my feed. My extra filter isn't doing anything. :-( Examining the source, it's clear that FB...

I think this probably calls for some added features so that multiple tests can use the same structure more readily. IMO, it's important to treat this as a different kind...

"Any code that instantiates a text fixture for the purpose of determining test arguments should be removed." To do that, you have to also look at TestCaseSource and maybe ValueSource.

@rprouse They require it except when they don't. :smile: I checked `ValueSource` and it's not a problem but `TestCaseSource` and `TestFixtureSource` both have three forms, the third of which involves...

@rprouse is correct. NUnit's convention is that names starting with an underscore (and usually all caps) are internal properties, not intended for user consumption. A typical internal property is _JOINTYPE,...

@dirkrombauts It's a good suggestion, but those strings are not localized. :-) The only way I can imagine for NUnit to use _DESCRIPTION is if the user is working with...

After more research... here is what I see regarding NUnit V2 output... The nunit.framework assembly has nothing to do with this issue. The Test, TestSuite and TestCase classes that hold...

The issue raises some questions about the way nunit 3 handles nunit 2 tests, which I'd like to see us resolve, so there's good reason to spend time on it.

@dirkrombauts Are you seeing _Description in the Nunit 3 formatted XML? (I'm guessing yes) Are you also seeing a "description" attribute? So far we are just handling this issue as...