Added NextcloudClientTest
This commit is contained in:
parent
02e9e7e404
commit
15466c9706
1 changed files with 16 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
|||
package org.domaindrivenarchitecture.provs.desktop.infrastructure
|
||||
|
||||
import org.domaindrivenarchitecture.provs.test.defaultTestContainer
|
||||
import org.domaindrivenarchitecture.provs.test.tags.ExtensiveContainerTest
|
||||
import org.junit.jupiter.api.Assertions.assertTrue
|
||||
|
||||
internal class NextcloudClientTest {
|
||||
@ExtensiveContainerTest
|
||||
fun test_installNextcloudClient() {
|
||||
// when
|
||||
val res = defaultTestContainer().installNextcloudClient()
|
||||
|
||||
// then
|
||||
assertTrue(res.success)
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue