Search Results

0
votes

What is the unit testing strategy for method call forwarding?

When unittesting the AddCar class, create tests that will exercise every codepath. If _authorizationManager.GetUsername() can throw an exception, create a test where your mock for this object will …
0
votes

Preferred Python unit-testing framework

There's always doctest if you want to keep your unit tests close to the code. HTH …