X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=security%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsecurity%2Fauthorization%2FDefaultOperationRegistryTest.java;h=e09f7fa1cd52ff93535143dc829ab49dcd41e16f;hb=17775e14ecfb286e59f67117e5cee7e21e95ab1f;hp=d33b65d79af26f3fe00b22d8de3f92d99c5af25e;hpb=ddd261f331280640c5b53c7128230b629ebcd268;p=utils diff --git a/security/src/test/java/org/wamblee/security/authorization/DefaultOperationRegistryTest.java b/security/src/test/java/org/wamblee/security/authorization/DefaultOperationRegistryTest.java index d33b65d7..e09f7fa1 100644 --- a/security/src/test/java/org/wamblee/security/authorization/DefaultOperationRegistryTest.java +++ b/security/src/test/java/org/wamblee/security/authorization/DefaultOperationRegistryTest.java @@ -1,49 +1,40 @@ /* - * Copyright 2005 the original author or authors. - * + * Copyright 2005-2010 the original author or authors. + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ package org.wamblee.security.authorization; import junit.framework.TestCase; - /** * Test of the operation registry. - * + * * @author Erik Brakkee */ public class DefaultOperationRegistryTest extends TestCase { - /** - * DOCUMENT ME! - */ private OperationRegistry registry; - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see junit.framework.TestCase#setUp() */ - /** - * DOCUMENT ME! - * - * @throws Exception DOCUMENT ME! - */ @Override protected void setUp() throws Exception { registry = new DefaultOperationRegistry(new Operation[] { - new AllOperation(), new ReadOperation(), - new WriteOperation(), new DeleteOperation(), - new CreateOperation() - }); + new AllOperation(), new ReadOperation(), new WriteOperation(), + new DeleteOperation(), new CreateOperation() }); } /** @@ -58,9 +49,8 @@ public class DefaultOperationRegistryTest extends TestCase { * Verifies that encoding of operations into a string works. */ public void testEncode() { - assertEquals("read,write", - registry.encode( - new Operation[] { new ReadOperation(), new WriteOperation() })); + assertEquals("read,write", registry.encode(new Operation[] { + new ReadOperation(), new WriteOperation() })); } /** @@ -73,8 +63,8 @@ public class DefaultOperationRegistryTest extends TestCase { } /** - * Verifies that an IllegalArgumentException occurs when attempting - * to decode an operation that is not known. + * Verifies that an IllegalArgumentException occurs when attempting to + * decode an operation that is not known. */ public void testDecodeUnknownOperation() { try {