You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// class in main sources that we want to generate a fixture for
class User
// object annotated with @Fixture and that class that fixture is for in test sources
@Fixture(User::class)
object UserFixtures
// Generate an extension function for creating the fixture in test sources
fun UserFixtures.user(): User = User()
At the moment the code is generated in the main directory. It should be generated in the test source directory.
The text was updated successfully, but these errors were encountered: