You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In two different modules I have a test class und used for both classes the same name.
While executing the tests, the test class One is called twice and the second test class not at all:
Could you have a look?
Could also include the test method assertIsNull & assertIsNotNull?
Thanks a lot!
The text was updated successfully, but these errors were encountered:
workaround:
replace
string className = typeof(this).stringof;
with something like
string className = this.classinfo.name;
so that the fully qualified name is used instead of just the class name
In two different modules I have a test class und used for both classes the same name.
While executing the tests, the test class One is called twice and the second test class not at all:
Could you have a look?
Could also include the test method assertIsNull & assertIsNotNull?
Thanks a lot!
The text was updated successfully, but these errors were encountered: