aboutsummaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/reader/test/TestVectorSuite.java
Commit message (Collapse)AuthorAgeFilesLines
* Specialize test suites in reader package to classes.J08nY2017-12-051-90/+0
|
* Fix suites with new CommandTest.J08nY2017-12-051-16/+20
|
* Split Util class into a package.J08nY2017-11-261-3/+3
|
* Add KeyAgreement/KeyGeneration/Signature tests. Implement KeyAgreementTest.J08nY2017-11-131-6/+6
|
* Add BouncyCastle library. Sketch out ECTesterStandalone.J08nY2017-11-121-2/+2
|
* Separate build files for standalone and reader apps.J08nY2017-11-121-1/+1
|
* Split test package into common.J08nY2017-11-101-9/+12
|
* Split the ec package into common package, rename reader part of the project.J08nY2017-11-101-3/+3
|
* Implement Result.ExpectedValue to add more logic to test evaluation.J08nY2017-11-051-11/+14
| | | | | | | | | | | | | | | | | | | | | - 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 some more compound tests and suite descriptions.J08nY2017-10-261-1/+1
|
* Introduce a Result class, that has a value and a cause.J08nY2017-10-251-12/+15
|
* Split ResponseWriter into separate class, introduce TestRunner.J08nY2017-10-251-7/+3
|
* Simplify test contract.J08nY2017-10-251-1/+1
|
* Split TestSuite classes into separate files.J08nY2017-10-251-0/+81