#include <iostream>
using namespace std;

#include <dealer.h>
#include <deckpontoon.h>
#include <playerGame.h>
#include <textGame.h>


void test01()
{
  deckpontoon dp;

  for (uint i=0; i<50; ++i)
  {
    cout << dp.draw() << " ";
  }
  cout << endl;

  dp.verifyTheDeck();

}

void test02()
{
  textGame tg;
}

void test03()
{
  playerGameSimulate pgs;

  double win;
  double loss;
  pgs.calculate(win,loss,4,11);
  cout << win << " " << loss << endl;

}

void test04()
{
  playerGameSimulate pgs;

  pgs.tableCalculatePrint();
}

void test05()
{
  playerGameSimulate pgs;

  pgs.tableCalculateHitPrint();
}

int main(int argc, char** argv)
{


  test02();


  return 0;
}



