コード例 #1
0
 public void GivenASoftNeuronPokedWithWhiteLeftImageAndBlackRightImage()
 {
     _softNeuron = new SoftNeuron();
     _softNeuron.Poke(Imaginary.White, Imaginary.Black);
 }
コード例 #2
0
 public void GivenASoftNeuronPokedWithBlackLeftImageAndWhiteRightImage()
 {
     _softNeuron = new SoftNeuron();
     _softNeuron.Poke(Imaginary.Black, Imaginary.White);
 }