mosenioring/back001/modules/clinical/build.gradle.kts
oskar e5f7c3ee19 Add unit tests for core service modules and update build dependencies for testing
- Added unit tests for `AuditService`, `BaseEntity`, `MedicationPlanService`, and `MessageService`.
- Updated Gradle test dependencies across modules to include `mockito-core` and `mockito-kotlin`.
2026-01-12 23:22:00 +01:00

16 lines
433 B
Plaintext

plugins {
kotlin("jvm")
kotlin("plugin.spring")
kotlin("plugin.jpa")
id("io.spring.dependency-management")
id("java-library")
}
dependencies {
api(project(":common"))
implementation(project(":modules:audit"))
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.mockito:mockito-core")
testImplementation("org.mockito.kotlin:mockito-kotlin:5.3.1")
}