1 package com.atlassian.seraph.elevatedsecurity;
2
3 import junit.framework.TestCase;
4
5 /**
6 */
7 public class TestNoopElevatedSecurityGuard extends TestCase
8 {
9 public void testItAlwaysSaysTrue()
10 {
11 NoopElevatedSecurityGuard noopElevatedSecurityGuard = NoopElevatedSecurityGuard.INSTANCE;
12 assertTrue(noopElevatedSecurityGuard.performElevatedSecurityCheck(null,null));
13 }
14 }