iondbproject / iondb

IonDB, a key-value datastore for resource constrained systems.
BSD 3-Clause "New" or "Revised" License
587 stars 48 forks source link

All unit tests to be migrated to PlanckUnit #19

Closed iondbproject closed 8 years ago

iondbproject commented 8 years ago

Currently, all IonDB unit tests use the CuTest library. We now have an in-house unit testing library named PlanckUnit, which can be found here.

The goal is to migrate all of our unit tests to use PlanckUnit. Realistically, this should just amount to changing method calls from the CuTest name to the Planck name.

Steps:

  1. Pull the master IonDB branch and make sure you can build and run the existing unit tests and have them all pass.
  2. Pull Planck Unit and make sure you can build and run the example for Planck Unit.
  3. branch off IonDB/master to a planck branch. Integrate Planck Unit.
  4. Once all tests pass once again, merge the planck branch back into master.
Stickerpants commented 8 years ago

Task done and merged to development. fd69c91