-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set manifest after topaz is started.
- Loading branch information
1 parent
2602cc9
commit 5a0053b
Showing
2 changed files
with
38 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,20 +143,20 @@ void testGetRelations() { | |
assertEquals(10, getRelationsResponse.getResultsList().size()); | ||
} | ||
|
||
// @Test | ||
// @Tag("IntegrationTest") | ||
// void testCheckRelationAdmin() { | ||
// // Arrange & Act | ||
// CheckRelationResponse checkRelationResponse = directoryClient.checkRelation( | ||
// "group", | ||
// "admin", | ||
// "member", | ||
// "user", | ||
// "[email protected]"); | ||
// | ||
// // Assert | ||
// assertTrue(checkRelationResponse.getCheck()); | ||
// } | ||
@Test | ||
@Tag("IntegrationTest") | ||
void testCheckRelationAdmin() { | ||
// Arrange & Act | ||
CheckRelationResponse checkRelationResponse = directoryClient.checkRelation( | ||
"group", | ||
"admin", | ||
"member", | ||
"user", | ||
"[email protected]"); | ||
|
||
// Assert | ||
assertTrue(checkRelationResponse.getCheck()); | ||
} | ||
|
||
@Test | ||
@Tag("IntegrationTest") | ||
|
@@ -173,20 +173,20 @@ void testCheckRelationViewer() { | |
assertFalse(checkRelationResponse.getCheck()); | ||
} | ||
|
||
// @Test | ||
// @Tag("IntegrationTest") | ||
// void testCheckAdmin() { | ||
// // Arrange & Act | ||
// CheckResponse checkResponse = directoryClient.check( | ||
// "group", | ||
// "admin", | ||
// "member", | ||
// "user", | ||
// "[email protected]"); | ||
// | ||
// // Assert | ||
// assertTrue(checkResponse.getCheck()); | ||
// } | ||
@Test | ||
@Tag("IntegrationTest") | ||
void testCheckAdmin() { | ||
// Arrange & Act | ||
CheckResponse checkResponse = directoryClient.check( | ||
"group", | ||
"admin", | ||
"member", | ||
"user", | ||
"[email protected]"); | ||
|
||
// Assert | ||
assertTrue(checkResponse.getCheck()); | ||
} | ||
|
||
@Test | ||
@Tag("IntegrationTest") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters