Added NextcloudClientTest

This commit is contained in:
Clemens 2023-07-07 08:40:52 +02:00
parent 02e9e7e404
commit 15466c9706

View file

@ -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)
}
}