| | |
| | | * Tests that schema validation resolves dependencies between parent/child |
| | | * attribute types regardless of the order in which they were added. |
| | | */ |
| | | @Test(enabled = false) |
| | | @Test |
| | | public void testAttributeTypeDependenciesChildThenParent() |
| | | { |
| | | final Schema schema = new SchemaBuilder(Schema.getCoreSchema()) |
| | |
| | | /** |
| | | * Tests that attribute types must have a syntax or a superior. |
| | | */ |
| | | @Test(enabled = false, expectedExceptions = LocalizedIllegalArgumentException.class) |
| | | @Test(expectedExceptions = LocalizedIllegalArgumentException.class) |
| | | public void testAttributeTypeNoSuperiorNoSyntax() |
| | | { |
| | | new SchemaBuilder(Schema.getCoreSchema()).addAttributeType( |
| | |
| | | * Tests that schema validation handles validation failures for superior |
| | | * attribute types regardless of the order. |
| | | */ |
| | | @Test(enabled = false) |
| | | @Test |
| | | public void testAttributeTypeSuperiorFailureChildThenParent() |
| | | { |
| | | final Schema schema = new SchemaBuilder(Schema.getCoreSchema()) |
| | |
| | | * Tests that schema validation handles validation failures for superior |
| | | * object classes regardless of the order. |
| | | */ |
| | | @Test(enabled = false) |
| | | @Test |
| | | public void testObjectClassSuperiorFailureChildThenParent() |
| | | { |
| | | final Schema schema = new SchemaBuilder(Schema.getCoreSchema()) |