-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2311 be investigation refactoring jpa data classes #2344
base: master
Are you sure you want to change the base?
2311 be investigation refactoring jpa data classes #2344
Conversation
Frontend test coverage: 95.45% 🤷♂️ Did not change |
Gradle Unit and Integration Test Results376 tests - 99 365 ✔️ - 106 35s ⏱️ -35s For more details on these failures, see this check. Results for commit 119ca9c. ± Comparison against base commit acf565b. This pull request removes 99 tests.
♻️ This comment has been updated with latest results. |
Frontend test coverage: 95.45% 🤷♂️ Did not change |
Frontend test coverage: 95.45% 🤷♂️ Did not change |
src/test/kotlin/com/epam/brn/upload/csv/audiometrySpeech/LopotkoRecordProcessorTest.kt
Outdated
Show resolved
Hide resolved
…-classes # Conflicts: # src/main/kotlin/com/epam/brn/model/GitHubUser.kt
…g-jpa-data-classes' into 2311-be-investigation-refactoring-jpa-data-classes
Frontend test coverage: 95.45% 🤷♂️ Did not change |
Frontend test coverage: 95.45% 🤷♂️ Did not change |
Frontend test coverage: 95.45% 🤷♂️ Did not change |
…g-jpa-data-classes' into 2311-be-investigation-refactoring-jpa-data-classes # Conflicts: # src/main/kotlin/com/epam/brn/service/TaskService.kt # src/main/kotlin/com/epam/brn/service/impl/UserAccountServiceImpl.kt # src/main/kotlin/com/epam/brn/upload/csv/seriesWords/SeriesWordsRecordProcessor.kt # src/main/kotlin/com/epam/brn/upload/csv/seriesWordsKoroleva/SeriesWordsKorolevaRecordProcessor.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesMatrix/SeriesMatrixRecordProcessorTest.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesWords/SeriesWordsRecordProcessorTest.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesWordsKoroleva/SeriesWordsKorolevaRecordProcessorTest.kt
Frontend test coverage: 95.45% 🤷♂️ Did not change |
…-classes # Conflicts: # src/main/kotlin/com/epam/brn/dto/response/WordsTaskResponse.kt # src/main/kotlin/com/epam/brn/model/Role.kt # src/main/kotlin/com/epam/brn/model/Task.kt # src/main/kotlin/com/epam/brn/model/UserAccount.kt # src/main/kotlin/com/epam/brn/service/impl/UserAccountServiceImpl.kt # src/main/kotlin/com/epam/brn/service/load/InitialDataLoader.kt # src/main/kotlin/com/epam/brn/upload/csv/audiometrySpeech/LopotkoRecordProcessor.kt # src/main/kotlin/com/epam/brn/upload/csv/seriesWords/SeriesWordsRecordProcessor.kt # src/main/kotlin/com/epam/brn/upload/csv/seriesWordsKoroleva/SeriesWordsKorolevaRecordProcessor.kt # src/test/kotlin/com/epam/brn/auth/filter/FirebaseTokenAuthenticationFilterTest.kt # src/test/kotlin/com/epam/brn/integration/UserDetailsControllerIT.kt # src/test/kotlin/com/epam/brn/service/TaskServiceTest.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesMatrix/SeriesMatrixRecordProcessorTest.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesWords/SeriesWordsRecordProcessorTest.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesWordsKoroleva/SeriesWordsKorolevaRecordProcessorTest.kt
Frontend test coverage: 95.45% 🤷♂️ Did not change |
Kudos, SonarCloud Quality Gate passed! |
…-classes # Conflicts: # src/main/kotlin/com/epam/brn/dto/response/TaskResponse.kt # src/main/kotlin/com/epam/brn/model/Task.kt # src/main/kotlin/com/epam/brn/service/impl/UserAccountServiceImpl.kt # src/main/kotlin/com/epam/brn/upload/csv/seriesMatrix/SeriesMatrixRecordProcessor.kt # src/test/kotlin/com/epam/brn/service/TaskServiceTest.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesMatrix/SeriesMatrixRecordProcessorTest.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesWords/SeriesWordsRecordProcessorTest.kt # src/test/kotlin/com/epam/brn/upload/csv/seriesWordsKoroleva/SeriesWordsKorolevaRecordProcessorTest.kt
Frontend test coverage: 45.59% 🤷♂️ Did not change |
Kudos, SonarCloud Quality Gate passed! |
@@ -41,26 +41,6 @@ data class Headphones( | |||
userAccount = userAccount?.id | |||
) | |||
|
|||
override fun equals(other: Any?): Boolean { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why in this class equals is also deleted?
but in other classes not
@@ -11,6 +11,6 @@ data class TaskResponse( | |||
val exerciseMechanism: ExerciseMechanism = exerciseType.toMechanism(), | |||
val name: String? = "", | |||
val serialNumber: Int? = 0, | |||
val answerOptions: Set<ResourceResponse> = HashSet(), | |||
val answerOptions: List<ResourceResponse> = mutableListOf(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Frontend test coverage: 45.59% 🤷♂️ Did not change |
Frontend test coverage: 45.59% 🤷♂️ Did not change |
Frontend test coverage: 45.59% 🤷♂️ Did not change |
Frontend test coverage: 45.59% 🤷♂️ Did not change |
2311: investigation refactoring jpa data classes