Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NUnit doesn´t run my new Tests

My new tests in NUnit appears in Tests List in a blue font. And I can´t run it.

This is que list. enter image description here

And this is my class. I can´t find anything wrong or even diferent from other test classes.

enter image description here

Please! Do someone knows what is happening?

like image 686
user666442 Avatar asked Dec 12 '22 04:12

user666442


1 Answers

Your test fixture class is not public. If you don't specify public class YouClass, YourClass will be internal, and not runnable by NUnit.

like image 96
jrummell Avatar answered Dec 31 '22 04:12

jrummell