Skip to content
This repository was archived by the owner on Oct 21, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions common/src/test/java/com.saucelabs.common/AcceptanceTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.saucelabs.common;

import org.junit.Test;

import static org.junit.Assert.assertTrue;

public class AcceptanceTest {

/**
* TODO This test class would contain tests that do connect to Sauce Labs as acceptance criteria.
*
* These tests can either be run only as part of a deployment or on every CI action.
* We could also decide on Sauce credentials and/or setup as appropriate.
*/
@Test
public void acceptance() {
assertTrue(true);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import static org.junit.Assert.*;


public class SauceHelperTests {
public class SauceHelperTest {
private SauceHelper sauceHelper;
@Before
public void runBeforeEveryTest()
Expand Down
19 changes: 19 additions & 0 deletions junit/src/test/java/com/saucelabs/junit/AcceptanceTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.saucelabs.junit;

import org.junit.Test;

import static org.junit.Assert.assertTrue;

public class AcceptanceTest {

/**
* TODO This test class would contain tests that do connect to Sauce Labs as acceptance criteria.
*
* These tests can either be run only as part of a deployment or on every CI action.
* We could also decide on Sauce credentials and/or setup as appropriate.
*/
@Test
public void acceptance() {
assertTrue(true);
}
}