[skip ci] mv Config file tests to config test package
This commit is contained in:
parent
546f2faf3a
commit
c9b3c2a1eb
3 changed files with 4 additions and 5 deletions
|
@ -5,7 +5,6 @@ import org.domaindrivenarchitecture.provs.configuration.domain.ConfigFileName
|
|||
import org.domaindrivenarchitecture.provs.configuration.domain.ConfigFileRepository
|
||||
|
||||
class DefaultConfigFileRepository : ConfigFileRepository {
|
||||
|
||||
override fun assertExists(configFileName: ConfigFileName?) {
|
||||
if (configFileName != null && !checkLocalFile(configFileName.fullqualified())) {
|
||||
throw RuntimeException("Config file ${configFileName.fileName} not found. Please check if path is correct.")
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
package org.domaindrivenarchitecture.provs.server.infrastructure
|
||||
package org.domaindrivenarchitecture.provs.configuration.infrastructure
|
||||
|
||||
import org.domaindrivenarchitecture.provs.server.domain.k3s.ApplicationFileName
|
||||
import org.domaindrivenarchitecture.provs.server.domain.k3s.ApplicationFileRepository
|
||||
import org.domaindrivenarchitecture.provs.server.infrastructure.DefaultApplicationFileRepository
|
||||
import org.junit.jupiter.api.Test
|
||||
import org.junit.jupiter.api.assertThrows
|
||||
import org.junit.jupiter.api.Assertions.assertEquals
|
||||
import java.io.File
|
||||
|
||||
internal class DefaultConfigFileRepositoryKtTest {
|
||||
|
||||
@Test
|
||||
fun assertExistsThrowsRuntimeException() {
|
||||
// when
|
Loading…
Reference in a new issue