In C#, what's the difference between
Assert.AreNotEqual
and
Assert.AreNotSame
|
In C#, what's the difference between
and
| |||
|
feedback
|
|
Almost all the answers given here are correct, but it's probably worth giving an example:
EDIT: A rebuttal to the currently accepted answer... If you use
Neither Basically you should never use The claim in the answer that:
entirely depends on how the variables are initialized. If they use string literals, then yet, interning will take care of that. If, however, you use:
then AreSame and AreEqual will almost certainly not return the same value. As for:
I almost never want to check for reference identity. It's rarely useful to me. I want to check for equivalence which is what | |||||||||||
feedback
|
|
Two things can be equal, but different objects. AreNotEqual checks the objects values via the equality test, while AreNotSame checks that they are not the same exact object. It is obvious why we would want to test that things AreNotEqual (we care about the values being tested); what about AreNotSame? The usefulness of this in testing is found when you have passed references around and want to make sure that after your shuffling is done that two references are still the same object. In a real world case, we use a lot of caching objects to mitigate round trips to the database. After an object has been handed off to the cache system, our unit tests ensure that in some cases we get back the same object (cache was valid) and in other cases we get back a fresh object (cache was invalidated). Note that AreNotEqual would not necessary suffice in this case. If the object had a new timestamp in the database, yet the data was not "different enough" to fail an equality test, AreNotEqual wouldn't notice that we refreshed the object. | ||||
|
feedback
|
|
AreNotSame does reference comparison, whereas AreNotEqual does an equality comparison. | |||
|
feedback
|
|
Assert.AreNotEqual asserts that two values are not equal to each other. Assert.AreNotSame asserts that two variables do not point to the same object. Example 1: int i = 1; int j = i; // The values are equal: Assert.AreEqual(i, j); // Two value types do *not* represent the same object: Assert.AreNotSame(i, j); Example 2: string s = "A"; string t = s; // The values are equal: Assert.AreEqual(s, t); // Reference types *can* point to the same object: Assert.AreSame(s, t); | ||||
|
feedback
|
|
AreNotSame uses reference equality ( | |||
|
feedback
|
|
Isn't it so that AreNotEqual checks for the case where two objects are not equal in terms of Equals() method, whereas AreNotSame checks for the case where the two object references are not the same. So if x and y are two objects which are equal in terms of Equals() but have been separately allocated, AreNotEqual() would trigger failing assertion but the other not. | |||
|
feedback
|