Guest User

Untitled

a guest
May 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import org.junit.runner.RunWith;
  2. import org.junit.runners.Suite;
  3. import org.junit.runners.Suite.SuiteClasses;
  4.  
  5. @RunWith(Suite.class)
  6. //Suiteテストランナーの指定。
  7. @SuiteClasses({CalculatorTest.class, CustomMatcher.class})
  8. //テストクラスの指定。他のテストスイートクラスの指定も可能。
  9. public class SomeTests {
  10. }
Add Comment
Please, Sign In to add comment