1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.compview;
17
18 import org.testng.annotations.Parameters;
19 import org.testng.annotations.Test;
20
21
22
23
24 public class ConstraintsSTNGBkMrkGen extends ConstraintsSTNGBase {
25
26 @Override
27 public String getTestUrl() {
28 return BOOKMARK_URL;
29 }
30
31 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testContraintsBookmark")
32 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
33 public void testConstraintsBookmark() throws Exception {
34 testConstraintsBookmark(this);
35 }
36
37 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testConstraintsField9Bookmark")
38 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
39 public void testConstraintsField9Bookmark() throws Exception {
40 testConstraintsField9Bookmark(this);
41 }
42 }