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/access/PermissionStatusTest.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/access/PermissionStatusTest.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/access/PermissionStatusTest.java b/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/access/PermissionStatusTest.java
new file mode 100644
index 00000000000..717b749ebc1
--- /dev/null
+++ b/plugins/org.eclipse.osee.framework.core.model.test/src/org/eclipse/osee/framework/core/model/access/PermissionStatusTest.java
@@ -0,0 +1,44 @@
+/*******************************************************************************
+ * 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.access;
+
+import org.junit.Assert;
+import org.eclipse.osee.framework.core.model.access.PermissionStatus;
+import org.junit.Test;
+
+/**
+ * Test Case for {@link PermissionStatus}
+ *
+ * @author Jeff C. Phillips
+ * @author Roberto E. Escobar
+ */
+public class PermissionStatusTest {
+
+ @Test
+ public void testDefaultConstruction() {
+ PermissionStatus permissionStatus = new PermissionStatus();
+ Assert.assertTrue(permissionStatus.matched());
+ Assert.assertEquals("", permissionStatus.getReason());
+ }
+
+ @Test
+ public void testConstruction() {
+ PermissionStatus permissionStatus = new PermissionStatus(false, "Hello");
+ Assert.assertFalse(permissionStatus.matched());
+ Assert.assertEquals(permissionStatus.getReason(), "Hello");
+ }
+
+ @Test
+ public void testToString() {
+ PermissionStatus permissionStatus = new PermissionStatus(false, "Hello");
+ Assert.assertEquals("PermissionStatus [reason=Hello, matchedPermission=false]", permissionStatus.toString());
+ }
+}

Back to the top