Lines Matching full:description
6 import org.junit.runner.Description;
49 Description description = plainTestMethod.describableFrameworkMethod().getDescription();
51 assertEquals("for_others_to_work(junitparams.internal.TestMethodTest)", description.getDisplayName());
52 assertTrue(description.getChildren().isEmpty());
63 Description description = plainTestMethod.describableFrameworkMethod().getDescription();
65 assertEquals("forOthersToWork", description.getDisplayName());
66 assertEquals("[0] a (forOthersToWork)(junitparams.internal.TestMethodTest)", description.getChildren().get(0).getDisplayName());
67 assertEquals("[1] b (forOthersToWork)(junitparams.internal.TestMethodTest)", description.getChildren().get(1).getDisplayName());
76 Description description = arrayTestMethod.describableFrameworkMethod().getDescription();
78 assertEquals("forOthersToWorkWithArray", description.getDisplayName());
80 description.getChildren().get(0).getDisplayName());
82 description.getChildren().get(1).getDisplayName());