tests: tests for dart repositories

This commit is contained in:
2025-01-04 16:25:00 +00:00
parent bdfb08f092
commit d4bf238f50
16 changed files with 1493 additions and 37 deletions
@@ -35,4 +35,9 @@ class ProjectRepositoryImpl implements ProjectRepository {
TaskEither<IError, List<Project>> findAll() {
return database.projects.findAll();
}
@override
TaskEither<IError, List<Project>> findByUserId(String userId) {
return database.projects.findByUserId(userId);
}
}