public void AreSameFace_yes()
 {
     Assert.True(Authenticator.AreSameFace(new FacialFeatures("green", 0.9m),
                                           new FacialFeatures("green", 0.9m)));
 }
 public void AreSameFace_no()
 {
     Assert.False(Authenticator.AreSameFace(new FacialFeatures("green", 0.9m),
                                            new FacialFeatures("blue", 0.9m)));
 }