I have noticed that when a new XCTestCase class is created with a default setUpWithError() and tearDownWithError() methods, there is no call to super.setUpWithError() or super.tearDownWithError() added anymore... If I am not mistaken, before, when I created a new Unit Test case class(a subclass of XCTestCase), in a default template class, there was a call to super.setUp() and super.tearDown() methods. Do you know why have these calls to super have been removed?
When a subclass of UIViewController is created, the default class template does have a call to super.viewDidLoad() for example. Why does a default template for XCTestCase does not have a call to super any more 🤨