Implemented by Miles Prinzen for PROG220: C++ Programming.
Original task description as follows:
For your blackjack assignment you will create A Card class The concept of a Deck (Array or Vector) A Dealer and a player. Your game must deal cards to both the dealer and the player then simulate 100 games of blackjack There should be no Human Input. the game should run automatically
You must create 3 unit tests Documentation
implement your unit tests in test.cpp and build your tests with
make apptest
to build the test runner and then run./apptest
to run the tests