net.nemerosa.ontrack.acceptance.ACCDSLAdminStatus.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-acceptance Show documentation
Show all versions of ontrack-acceptance Show documentation
Ontrack module: ontrack-acceptance
The newest version!
package net.nemerosa.ontrack.acceptance
import net.nemerosa.ontrack.acceptance.support.AcceptanceTestSuite
import org.junit.Test
/**
* Acceptance tests for the access to the application status
*/
@AcceptanceTestSuite
class ACCDSLAdminStatus extends AbstractACCDSL {
@Test
void 'Admin status'() {
// Status
def status = ontrack.admin.status
assert status.health: "Health section"
assert status.connectors: "Connectors section"
}
}