psyomn / agen

Dumb code generation tool for Ada
Apache License 2.0
1 stars 0 forks source link

Unit tests #9

Open Entomy opened 5 years ago

Entomy commented 5 years ago

There's a few options for unit test frameworks as far as Ada goes.

AUnit: This is the AdaCore/GNAT offering, based off JUnit with modifications. It works, there's plenty of documentation for it, and it's familiar to most people.

VectorCast/Ada: Commercial. Excellent quality, but probably not what's wanted for a project like this.

Ahven: I know nothing about this one. Never used it. Seems like another take on JUnit for Ada.

Testing: My own testing framework. Offers some unusual features like procedure testing, but isn't mature and takes a considerably different approach so it's far less familiar.

Your call. I'll get unit tests made up once a decision is made.

psyomn commented 5 years ago

I don't mind too much. I personally would go with AUnit, though if you plan on implementing tests, I think you should be the one to decide :o). Have fun!