Exemplo n.º 1
0
 public void GivenASoftNeuronPokedWithWhiteLeftImageAndBlackRightImage()
 {
     _softNeuron = new SoftNeuron();
     _softNeuron.Poke(Imaginary.White, Imaginary.Black);
 }
Exemplo n.º 2
0
 public void GivenASoftNeuronPokedWithBlackLeftImageAndWhiteRightImage()
 {
     _softNeuron = new SoftNeuron();
     _softNeuron.Poke(Imaginary.Black, Imaginary.White);
 }