Skip to content

Commit 8b93191

Browse files
committed
Re-added the example, basic test.
1 parent eac6915 commit 8b93191

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.heroku.theinternet.tests.web;
2+
3+
import static com.google.common.truth.Truth.assertThat;
4+
5+
import com.frameworkium.tests.internal.BaseTest;
6+
import com.heroku.theinternet.pages.web.WelcomePage;
7+
8+
import org.testng.annotations.Test;
9+
10+
public class TheInternetExampleTest extends BaseTest {
11+
12+
@Test
13+
public void basicAuth() {
14+
15+
assertThat(WelcomePage.open().then().getTitle()).isEqualTo("The Internet");
16+
}
17+
}

0 commit comments

Comments
 (0)