kovacs-levent / Blake3-Python

This repository contains the source code for our Applied Cryptography Project Seminar class project at Eötvös Loránd University (ELTE). Our project is a native python implementation of the BLAKE3 hashing algorithm.
1 stars 2 forks source link

Unit test coverage #14

Closed kovacs-levent closed 3 years ago

kovacs-levent commented 4 years ago

Check unit test coverage. Core guidelines:

Every individual component should be tested (if not testable, provide a reason why so we can discuss) Unit tests should test most of the component's code (I think this will be based on a review process)

I suggest using the pytest framework for unit testing or maybe doctests. Until we start working the framework can be an open question.

kovacs-levent commented 3 years ago

The prototype hash's 3 modes are unit tested.

kovacs-levent commented 3 years ago

Parallel mode tested. No more to unit test :)