Skip to main content
summaryrefslogtreecommitdiffstats
blob: f116137b9927cd3568f075992d5049848003cef8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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.test.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