aboutsummaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/reader/output/XMLTestWriter.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Split Util class into a package.J08nY2017-11-261-3/+3
|
* Add KeyAgreement/KeyGeneration/Signature tests. Implement KeyAgreementTest.J08nY2017-11-131-3/+3
|
* Separate build files for standalone and reader apps.J08nY2017-11-121-1/+1
|
* Split test package into common.J08nY2017-11-101-5/+7
|
* Output SWs as unsigned ints.J08nY2017-11-061-2/+2
|
* Implement Result.ExpectedValue to add more logic to test evaluation.J08nY2017-11-051-0/+3
| | | | | | | | | | | | | | | | | | | | | - Introduces a new enum Result.ExpectedValue, which is used to signify what Test results are expected. - Changes the Result.Value enum to contain information about what was expected. It gains more values: - UXSUCCESS -> Unexpected success. - XFAILURE -> Expected failure. The values SUCCESS and XFAILURE are the OK, values. - Creates a hierarchy of evaluating Responses, Simple tests and Compoung tests. Simple test evaluates the OK property of the response object (using .successfull() method) and again exposes its OK property which depends on the tests ExpectedValue and the response success. Compound test evaluates the OK property of the Simple tests it contains (using the .ok() method) and again exposes its OK property which depends on the concrete Compound test variant, but involves some ExpectedValues and the success of the individual Simple tests it contains.
* Add output of commands to test-suite YAML and XML output.J08nY2017-11-011-0/+12
|
* Add some more compound tests and suite descriptions.J08nY2017-10-261-1/+7
|
* Introduce a Result class, that has a value and a cause.J08nY2017-10-251-2/+9
|
* Split ResponseWriter into separate class, introduce TestRunner.J08nY2017-10-251-0/+117