Exemplo n.º 1
0
 public void Setup()
 {
     _config = ConfigMock.BuildConfig();
     _robotCache = Substitute.For<IRobotCache>();
     _robotMove = new RobotMove(_robotCache, _config);
     _testRobot = new Robot();
 }
Exemplo n.º 2
0
 public RobotTurn(IRobotCache robotCache, Config config)
 {
     _robotCache = robotCache;
     _config     = config;
 }
Exemplo n.º 3
0
 public RobotPosition(IRobotCache robotCache, Config config)
 {
     _robotCache = robotCache;
     _config     = config;
 }
Exemplo n.º 4
0
 public RobotMove(IRobotCache robotCache, Config config)
 {
     _robotCache = robotCache;
     _config     = config;
 }
Exemplo n.º 5
0
 public RobotInit(IRobotCache robotcache, Config config)
 {
     _robotCache = robotcache;
     _config     = config;
 }