public void GivenASoftNeuronPokedWithWhiteLeftImageAndBlackRightImage()
 {
     _softNeuron = new SoftNeuron();
     _softNeuron.Poke(Imaginary.White, Imaginary.Black);
 }
 public void GivenASoftNeuronPokedWithBlackLeftImageAndWhiteRightImage()
 {
     _softNeuron = new SoftNeuron();
     _softNeuron.Poke(Imaginary.Black, Imaginary.White);
 }