koromiko / Tutorial

We are sample code :)
325 stars 240 forks source link

For tearDown() from PhotoListViewModelTests, any reason why super.tearDown() is at the end of the method? #4

Closed arkilis closed 6 years ago

arkilis commented 6 years ago

image

Why super.tearDown() is at the end of the method? Thanks

srikanth-vm commented 6 years ago

Dont think this is an issue here. Some of the overriden methods require you to invoke the super methods in the end, tear down is one among them.

Refer:

arkilis commented 6 years ago

Thanks,