Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @Test
  2. public void test_Suite() throws Exception {
  3. driver.get("www.my-target-URL.com");
  4.  
  5. test_1();
  6. test_2();
  7. }
  8.  
  9. @Test
  10. public void test_1() throws Exception {
  11. //perform test
  12. assertTrue(myquery);
  13. }
  14.  
  15. @Test
  16. public void test_2() throws Exception {
  17. //perform test
  18. assertTrue(myquery);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement