Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/type/AttributeTypeTest.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/type/AttributeTypeTest.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/type/AttributeTypeTest.java b/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/type/AttributeTypeTest.java
new file mode 100644
index 00000000000..9950a8b3e60
--- /dev/null
+++ b/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/type/AttributeTypeTest.java
@@ -0,0 +1,51 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.core.model.type;
+
+import org.junit.Ignore;
+import org.junit.Test;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class AttributeTypeTest {
+ @Ignore
+ @Test
+ public void test() {
+
+ }
+ //
+ // @Override
+ // public void testDirty() throws OseeCoreException {
+ // AttributeType attributeType = OseeTypesUtil.createAttributeType(attrCache, factory, "GUID", "AttributeDirtyTest");
+ // Assert.assertTrue(attributeType.isDirty());
+ // attributeType.clearDirty();
+ //
+ // String initialValue = attributeType.getName();
+ // attributeType.setName("My Name Has Changes");
+ // Assert.assertTrue(attributeType.isDirty());
+ //
+ // // Remains Dirty
+ // attributeType.setName(initialValue);
+ // Assert.assertTrue(attributeType.isDirty());
+ //
+ // // attributeType.setFields(name, baseAttributeTypeId, attributeProviderNameId, baseAttributeClass,
+ // // providerAttributeClass, fileTypeExtension, defaultValue, oseeEnumType, minOccurrences, maxOccurrences,
+ // // description, taggerId);
+ //
+ // }
+ //
+ // // private void checkDirty(AttributeType attributeType) {
+ // // // DirtyStateDetail details = attributeType.getDirtyDetails();
+ // // // details.
+ // // }
+ //
+}

Back to the top