File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
azd/src/test/java/org/azd Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 99import org .azd .interfaces .GraphDetails ;
1010import org .azd .utils .AzDClientApi ;
1111import org .junit .Before ;
12+ import org .junit .Ignore ;
1213import org .junit .Test ;
1314
1415import java .io .File ;
@@ -107,6 +108,7 @@ public void shouldGetBiDirectionalMemberRelationship() throws AzDException {
107108 }
108109
109110 @ Test
111+ @ Ignore
110112 public void shouldAddSubjectToGroup () throws AzDException {
111113 try {
112114 var group = g .getGroups ().getGraphGroups ().stream ().filter (x -> x .getDisplayName ().equals ("Contributors" )).findFirst ().get ();
Original file line number Diff line number Diff line change 99import org .azd .interfaces .GraphDetails ;
1010import org .azd .utils .AzDClientApi ;
1111import org .junit .Before ;
12+ import org .junit .Ignore ;
1213import org .junit .Test ;
1314
1415import java .io .File ;
2223 * additional tests for graph api which require other (Core) API components
2324 * to perform object lookups
2425 */
26+ @ Ignore
2527public class GraphCoreResolutionTest {
2628 private static final JsonMapper MAPPER = new JsonMapper ();
2729 private static AzDClient webApi ;
Original file line number Diff line number Diff line change 1313import org .azd .serviceclient .AzDService ;
1414import org .azd .serviceclient .AzDServiceClient ;
1515import org .junit .Before ;
16+ import org .junit .Ignore ;
1617import org .junit .Test ;
1718
1819import java .io .File ;
@@ -123,6 +124,7 @@ public void shouldGetBiDirectionalMemberRelationship() throws AzDException {
123124 }
124125
125126 @ Test
127+ @ Ignore
126128 public void shouldAddSubjectToGroup () throws AzDException {
127129 try {
128130 var group = g .groups ().list ().getGraphGroups ().stream ().filter (x -> x .getDisplayName ().equals ("Contributors" )).findFirst ().get ();
@@ -196,6 +198,7 @@ public void shouldResolveDescriptorForProject() throws AzDException {
196198 }
197199
198200 @ Test
201+ @ Ignore
199202 public void shouldLookupMultipleSubjects () throws AzDException {
200203 var group = g .groups ().list ().getGraphGroups ().stream ().filter (x -> x .getDisplayName ().equals ("Contributors" )).findAny ().get ();
201204 var members = g .memberships ().list (group .getDescriptor (),
You can’t perform that action at this time.
0 commit comments