Skip to content

Commit

Permalink
Build and run the test
Browse files Browse the repository at this point in the history
  • Loading branch information
nirmalchandra committed Nov 1, 2023
1 parent 9e150fd commit 8b6b518
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions http-testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
<include>org.jsmart.zerocode.testhelp.tests.helloworldjavaexec.HelloWorldJavaApiAsProtocolTest</include>
<include>org.jsmart.zerocode.testhelp.tests.helloworldarrayelementmatching.HelloWorldArrayElementPickerTest</include>
<include>org.jsmart.zerocode.testhelp.tests.helloworldimplicitdelay.JustHelloImplicitDelayTimeOutTest</include>
<include>org.jsmart.zerocode.testhelp.tests.helloworldfileupload.HelloWorldFileUploadTest</include>
</includes>
</configuration>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public class HelloWorldFileUploadTest {

@Test
@Scenario("helloworld_file_upload/hello_world_file_upload_test.json")
public void fileUploadTest() throws Exception {
public void testFileUpload() throws Exception {
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.jsmart.zerocode.testhelp.tests.helloworldjavaexec;

import org.jsmart.zerocode.core.domain.JsonTestCase;
import org.jsmart.zerocode.core.domain.Scenario;
import org.jsmart.zerocode.core.domain.TargetEnv;
import org.jsmart.zerocode.core.runner.ZeroCodeUnitRunner;
import org.junit.Test;
Expand All @@ -11,7 +11,7 @@
public class SecurityHeaderTokenDynamicTest {

@Test
@JsonTestCase("helloworldjavaexec/hello_world_security_token_for_header_test.json")
@Scenario("helloworldjavaexec/hello_world_security_token_for_header_test.json")
public void testNewHeaderToken() throws Exception {

}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.jsmart.zerocode.testhelp.tests.helloworldproperties;

import org.jsmart.zerocode.core.domain.JsonTestCase;
import org.jsmart.zerocode.core.domain.Scenario;
import org.jsmart.zerocode.core.domain.TargetEnv;
import org.jsmart.zerocode.core.runner.ZeroCodeUnitRunner;
import org.junit.Test;
Expand All @@ -11,12 +11,12 @@
public class HelloWorldPropertiesReadingTest {

@Test
@JsonTestCase("helloworld_properties_reading/read_properties_into_test_steps.json")
@Scenario("helloworld_properties_reading/read_properties_into_test_steps.json")
public void test_aPropertyKeyValue() throws Exception {
}

@Test
@JsonTestCase("helloworld_properties_reading/use_common_SAML_token_as_headers.json")
@Scenario("helloworld_properties_reading/use_common_SAML_token_as_headers.json")
public void test_useCommonSAMLToken() throws Exception {
}

Expand Down

0 comments on commit 8b6b518

Please sign in to comment.