From 81ac5ef40635ce1b69231f3385945fc76cdaf863 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 12 Feb 2016 17:34:26 +0000
Subject: [PATCH] AttributeTypeTest.java: No longer useful since we are now using the SDK's AttributeType class
---
/dev/null | 60 ------------------------------------------------------------
1 files changed, 0 insertions(+), 60 deletions(-)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/types/AttributeTypeTest.java b/opendj-server-legacy/src/test/java/org/opends/server/types/AttributeTypeTest.java
deleted file mode 100644
index 4e62f56..0000000
--- a/opendj-server-legacy/src/test/java/org/opends/server/types/AttributeTypeTest.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * CDDL HEADER START
- *
- * The contents of this file are subject to the terms of the
- * Common Development and Distribution License, Version 1.0 only
- * (the "License"). You may not use this file except in compliance
- * with the License.
- *
- * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
- * or http://forgerock.org/license/CDDLv1.0.html.
- * See the License for the specific language governing permissions
- * and limitations under the License.
- *
- * When distributing Covered Code, include this CDDL HEADER in each
- * file and include the License file at legal-notices/CDDLv1_0.txt.
- * If applicable, add the following below this CDDL HEADER, with the
- * fields enclosed by brackets "[]" replaced with your own identifying
- * information:
- * Portions Copyright [yyyy] [name of copyright owner]
- *
- * CDDL HEADER END
- *
- * Copyright 2015-2016 ForgeRock AS
- */
-package org.opends.server.types;
-
-import static org.opends.server.core.DirectoryServer.*;
-
-import org.forgerock.opendj.ldap.schema.AttributeType;
-import org.opends.server.DirectoryServerTestCase;
-import org.opends.server.TestCaseUtils;
-import org.testng.Assert;
-import org.testng.annotations.AfterClass;
-import org.testng.annotations.BeforeClass;
-import org.testng.annotations.Test;
-
-/** Test for AttributeType */
-public class AttributeTypeTest extends DirectoryServerTestCase
-{
- @BeforeClass
- public void setUp() throws Exception
- {
- TestCaseUtils.startFakeServer();
- }
-
- @AfterClass
- public void tearDown() throws Exception
- {
- TestCaseUtils.shutdownFakeServer();
- }
-
- @Test
- public void defaultAttributeTypesWithDifferentCaseEquals()
- {
- AttributeType attrType = getAttributeType("displayName");
- AttributeType attrType2 = getAttributeType("displayname");
- Assert.assertNotSame(attrType, attrType2);
- Assert.assertEquals(attrType, attrType2);
- }
-}
--
Gitblit v1.10.0