This is a proof of concept to show case unit testing with COBOL. The proof of concept implements the FizzBuzz kata using Test Driven Development.
Unit tests are implemented using @neopragma's cobol-unit-test.
To compile and run the tests and program you need the GnuCOBOL compiler.
For MacOS:
$ brew install gnu-cobol
To compile and execute the program:
$ make compile
$ ./target/FIZZBUZZ
To run the tests:
$ make test