This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP: Property-based testing utils * WIP: Property-based Arb setup * Add support for arb income * Add args for transaction * WIP: Fix the `TransactionMapper` * WIP: Add property-based tests * WIP: Fix the transaction repository * Refactor * WIP: Fix tests * Fix the `TransactionMapper` test * Improve the `TransactionMapper` test * WIP: Improve the transaction mapper tests * Add property-based tests for the transaction mapper * Refactor the transaction mapper * Refactor to `TransactionMapper` * Fix Detekt errors * WIP: TransactionRepositoryImpl test * WIP: TransactionRepositoryImplTest * Speed-up tests * WIP: Fix build errors * Fix build errors * Delete unnecessary method * Remove unnecessary method * Refactor the TransactionRepository * Add tests for the transactions repository * Add tests for the save methods * Cover the TransactionRepository with tests (one failing) * Fix failing test * Fix Detekt * Increase tests heap size * Add tests and fix bug in the transaction mapper * WIP: Fix transaction mapper entity<->domain isomorphism * Fix the TransactionMapperPropertyTest * Fix Detekt * Attempt to fix GitHub Actions #1 * Revert useless fix * Fix flaky tests * Fix Detekt
- Loading branch information
1 parent
ce0da86
commit f1225b9
Showing
62 changed files
with
2,233 additions
and
1,265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.ivy.base | ||
|
||
import java.time.ZoneId | ||
import javax.inject.Inject | ||
|
||
@Suppress("UnnecessaryPassThroughClass") | ||
class TimeProvider @Inject constructor() { | ||
fun getZoneId(): ZoneId = ZoneId.systemDefault() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.