Skip to content

Commit

Permalink
Add new test to BUCK file.
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Mar 30, 2017
1 parent 3442be1 commit 4337919
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions java/client/test/org/openqa/selenium/remote/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ java_test(name = 'common-tests',
'RemoteCommonTests.java',
'http/JsonHttpCommandCodecTest.java',
'http/JsonHttpResponseCodecTest.java',
'http/W3CHttpResponseCodecTest.java',
],
deps = [
'//java/client/src/org/openqa/selenium:selenium',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@
import org.junit.runners.Suite;
import org.openqa.selenium.remote.http.JsonHttpCommandCodecTest;
import org.openqa.selenium.remote.http.JsonHttpResponseCodecTest;
import org.openqa.selenium.remote.http.W3CHttpResponseCodecTest;

@RunWith(Suite.class)
@Suite.SuiteClasses({
BeanToJsonConverterTest.class,
DesiredCapabilitiesTest.class,
JsonToBeanConverterTest.class,
JsonHttpCommandCodecTest.class,
JsonHttpResponseCodecTest.class
JsonHttpResponseCodecTest.class,
W3CHttpResponseCodecTest.class
})
public class RemoteCommonTests {
}

0 comments on commit 4337919

Please sign in to comment.