(t *testing.T, valueOne ValueInterface, valueTwo ValueInterface)
| 145 | } |
| 146 | } |
| 147 | func shouldNotBeEqual(t *testing.T, valueOne ValueInterface, valueTwo ValueInterface) { |
| 148 | const ErrorMsgShouldNotBeEqual = "%s(type: %v) is equal %s(type: %v), but is shouldn't be" |
| 149 | |
| 150 | if valueOne.IsEqual(valueTwo) { |
| 151 | t.Errorf(ErrorMsgShouldNotBeEqual, valueOne.ToString(), valueOne.GetType(), valueTwo.ToString(), valueTwo.GetType()) |
| 152 | } |
| 153 | } |
no test coverage detected