I noticed some unit tests, like in the spring framework where you setup the object and the test but don't explicitly use the assert methods.
Essentially, you have an exception or not.
Is this unit testing? Is this something to avoid? For example, here are some tests from the Spring framework. No assert clauses, just a test.
public void testNeedsJoinPoint() {
mockCollaborator.needsJoinPoint("getAge");
mockControl.replay();
testBeanProxy.getAge();
mockControl.verify();
}