Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose you have a method like

public Something copy () {
  return new Something();
}

In your jUnit, you have

Something s1 = new Something();
Something s2 = s1.copy()

Other then

assertTrue (s1 != s2);
assertTrue (s2 != null);
assertTrue (s1.toString().equals(s2.toString)));

Is there any additional way you can confirm that a NEW reference is returned by a copy()?

share|improve this question

4 Answers

up vote 2 down vote accepted

The first one is sufficient to check they're not the same, but there's also an assertion built into JUnit:

assertNotSame(s1, s2);
share|improve this answer
Cool; Thanks Jon – Jam Sep 13 '11 at 20:02

Sure use Assert.assertTrue(s1, s2)

Moreover this is the way to compare. It calls Something.equals() internally and throws exception is equals returns false.

share|improve this answer
I think you're missing the "they mustn't be the same reference" part - and assertTrue isn't the assertion you mean either, I suspect. – Jon Skeet Sep 13 '11 at 20:03
But if Something overloads equals it is likely that the above would not produce the desired result. – John B Sep 13 '11 at 20:03

If you want to use Hamcrest-style: sameInstance

share|improve this answer

Another great way for testing things like these is the Mockito test framework (http://code.google.com/p/mockito/)

It allows you to verify that only certain things get called N number of times, or not at all with something like:

Mockito.verify(mockOne, times(1)).mockedFunction();

Which verifies that mockOne had its mockedFunction called exactly once.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.