public void Establish_Only_1_Move_Is_Defined() { _definition = new Definition("1 1"); _teller = new CookieTeller(1); _game = new FindTheCookie( _definition, _teller); }
public void Establish() { _definition = new Definition("3 10 10 7 3"); _teller = new CookieTeller(_definition.Target); _game = new FindTheCookie( _definition, _teller); }
public void Establish_3_Moves_Are_Defined() { _definition = new Definition("1 0 2 1"); _teller = new CookieTeller(1); _game = new FindTheCookie( _definition, _teller); }
public void Establish() { _definition = new Definition("12 5 -3 1 4 6 7 8 9 12"); _teller = new CookieTeller(_definition.Target); _game = new FindTheCookie( _definition, _teller); }
public FindTheCookie(Definition definition, CookieTeller teller) { _teller = teller; _definition = definition; }