* for each behaviour.
*/
public void testDrawing()
{
HandBehaviour behaviours[] = {
new BlackJackHand(), new MemoryHand(), new WarHand(), new GoFishHand()};
int startSizes[] = {0, 0, 26, 7};
for (int i = 0; i < behaviours.length; i++)
{
player = new Player(behaviours[i]);
player.draw();