top of page

UNIT TESTS
Test the funcionality of each component in the system.
Use mocks to isolate each component: data client, randomness client, servers & external libraries.
See details in the starting at page 20.

INTEGRATION TESTS
Test the most complex parts. Integrate between the server and the external libraries.
See details in the starting at page 22.

PERFORMANCE TESTS
Mesure the performance of the system as a function of the number of elements. Mesure runtime, communication complexity, memory consumption.

MANUAL TESTS
Enable debug mode of the system & monitors the logs.
At the end of the computation view the actual results.

bottom of page