Skip to content

Commit 4337919

Browse files
committed
Add new test to BUCK file.
1 parent 3442be1 commit 4337919

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

java/client/test/org/openqa/selenium/remote/BUCK

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ java_test(name = 'common-tests',
77
'RemoteCommonTests.java',
88
'http/JsonHttpCommandCodecTest.java',
99
'http/JsonHttpResponseCodecTest.java',
10+
'http/W3CHttpResponseCodecTest.java',
1011
],
1112
deps = [
1213
'//java/client/src/org/openqa/selenium:selenium',

java/client/test/org/openqa/selenium/remote/RemoteCommonTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,16 @@
2222
import org.junit.runners.Suite;
2323
import org.openqa.selenium.remote.http.JsonHttpCommandCodecTest;
2424
import org.openqa.selenium.remote.http.JsonHttpResponseCodecTest;
25+
import org.openqa.selenium.remote.http.W3CHttpResponseCodecTest;
2526

2627
@RunWith(Suite.class)
2728
@Suite.SuiteClasses({
2829
BeanToJsonConverterTest.class,
2930
DesiredCapabilitiesTest.class,
3031
JsonToBeanConverterTest.class,
3132
JsonHttpCommandCodecTest.class,
32-
JsonHttpResponseCodecTest.class
33+
JsonHttpResponseCodecTest.class,
34+
W3CHttpResponseCodecTest.class
3335
})
3436
public class RemoteCommonTests {
3537
}

0 commit comments

Comments
 (0)