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
Problem.
Currently, JNose supports only JUnit4. However, we reused the detection rules from tsDetect and it also supports JUnit3.
We have inserted an unnecessary restriction to JNose regarding the JUnit version. We only consider a class that has a "@test" annotation, which might occur in JUnit 4 or higher.
Solution.
To identify a test class, we can (1) check if its name contains the word "Test" as a prefix or suffix, and (2) check if there is a JUnit import.
The text was updated successfully, but these errors were encountered:
Problem.
Currently, JNose supports only JUnit4. However, we reused the detection rules from tsDetect and it also supports JUnit3.
We have inserted an unnecessary restriction to JNose regarding the JUnit version. We only consider a class that has a "@test" annotation, which might occur in JUnit 4 or higher.
Solution.
To identify a test class, we can (1) check if its name contains the word "Test" as a prefix or suffix, and (2) check if there is a JUnit import.
The text was updated successfully, but these errors were encountered: