Reputation: 449
I updated the toothpick
sdk version to 3.0.2
from 1.1.3
. After updating, not able to find ToothPickRule
class under testing package in toothpick
. Which is causing test cases to fail.
Upvotes: 0
Views: 51
Reputation: 6697
You need to include the following dependency:
testImplementation 'com.github.stephanenicolas.toothpick:toothpick-testing-junit4:3.0.2'
it contains ToothPickRule
.
The current version of ToothPick is 3.1.0 so you may want to update to it as well.
Upvotes: 0