Exemple #1
0
 public void Equals_DifferentType_IsFalse()
 {
     _step1 = new MigrationStep(_reference1, true);
     Assert.IsFalse(_step1.Equals("HI"));
 }
 public void Equals_SameReference_SameReverting_IsTrue()
 {
     _step1 = new MigrationStep(_reference1, true);
       _step2 = new MigrationStep(_reference1, true);
       Assert.IsTrue(_step1.Equals(_step2));
 }
Exemple #3
0
 public void Equals_DifferentReference_SameReverting_IsFalse()
 {
     _step1 = new MigrationStep(_reference1, true);
     _step2 = new MigrationStep(_reference2, true);
     Assert.IsFalse(_step1.Equals(_step2));
 }
 public void Equals_DifferentType_IsFalse()
 {
     _step1 = new MigrationStep(_reference1, true);
       Assert.IsFalse(_step1.Equals("HI"));
 }