Lines Matching +full:stability +full:- +full:tests
1 # SDK Stability Regression Tests
4 This module contains stability regression tests.
6 We define "stable" to mean that the SDK does not encounter any client-side errors for identified si…
11 As these tests will be running against live, running services, we can expect some subset of request…
20 - Run from your IDE
22 - Run from maven command line
25 mvn clean install -P stability-tests -pl :stability-tests
28 - Build JAR and use the executable JAR
30 First add tests to TestRunner Class, then run the following command.
33 mvn clean install -pl :stability-tests --am -P quick
34 mvn clean install -pl :bom-inernal
35 cd test/stability-tests
36 mvn package -P test-jar
37 java -jar target/stability-tests-uber.jar
40 ## Adding New Tests
42 - The tests are built using [JUnit 5](https://junit.org/junit5/). Make sure you are using the corre…
45 - All tests should have the suffix of `StabilityTests`, eg: `S3StabilityTests`