public Instructions_TrampolineShould()
 {
     _sit     = new Trampoline();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
 public Instructions_GetShould()
 {
     _sit     = new Get();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #3
0
 public Instructions_MoveRightShould()
 {
     _sit     = MoveRight.Instance;
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #4
0
 public Instructions_DivideShould()
 {
     _sit     = new Divide();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
 public Instructions_StringDefaultShould()
 {
     _sit     = new StringDefault();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
 public Instructions_MultiplyShould()
 {
     _sit     = new Multiply();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #7
0
 public Instructions_AskForANumberShould()
 {
     _sit     = new AskForANumber();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #8
0
 public Instructions_OutputASCIIShould()
 {
     _sit     = new OutputASCII();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
 public Instructions_MoveRandomShould()
 {
     _sit     = new MoveRandom();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #10
0
 public Instructions_EndProgramShould()
 {
     _sit     = new EndProgram();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #11
0
 public Instructions_BranchLeftOrRightShould()
 {
     _sit     = new BranchLeftOrRight();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #12
0
 public Instructions_ToggleStringModeShould()
 {
     _sit     = new ToggleStringMode();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #13
0
 public Instructions_LogicalNotShould()
 {
     _sit     = new LogicalNot();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }
Beispiel #14
0
 public Instructions_BranchUpOrDownShould()
 {
     _sit     = new BranchUpOrDown();
     _runtime = MockIBefungeRunTimeFactory.Create();
 }