Tomáš Poledný created NETBEANS-1748:
---------------------------------------

             Summary: JUnit 5 there is no posibilities how run Repeated test 
method 
                 Key: NETBEANS-1748
                 URL: https://issues.apache.org/jira/browse/NETBEANS-1748
             Project: NetBeans
          Issue Type: Bug
          Components: java - JUnit
    Affects Versions: 10.0
            Reporter: Tomáš Poledný


JUnit 5 has 
[RepeatedTest|https://junit.org/junit5/docs/current/user-guide/#writing-tests-repeated-tests].
 There is no posibilities how run method with annotation RepeatedTest (Run 
Focused Test Method). Error message is: No test method found.  RepeatedTest 
methods are running after Test File only.

Example:
{code:java}
class SomeRepeatedTest {
        @RepeatedTest(10)
        void repeatedTestTest() {
                System.out.println("repeatedTest");
        }
}
{code}
I am not able to run test method repeatedTestTest.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to