Recently I had to chance to see a bunch of tests without any assert. Those tests had to be accuracy tests.
I think the only thing that can be tested with such tests is to check if none exceptions are raised during execution flow. But anyway I really don't understand how we can verify the accuracy of the code with no asserting tests - even the methods that do nothing can pass such tests.
So I'm wondering what can be purpose of such tests and what else can be tested with that?