This is an automated email from the ASF dual-hosted git repository. jgallimore pushed a commit to branch tomee-7.0.x in repository https://gitbox.apache.org/repos/asf/tomee.git
commit bf70dd45aa7ef611f5a54f1fbe9ccfe6fe879af0 Author: Jonathan Gallimore <[email protected]> AuthorDate: Tue May 28 09:30:50 2019 +0100 Adding test --- .../core/security/BasicJaccProviderTest.java | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/container/openejb-core/src/test/java/org/apache/openejb/core/security/BasicJaccProviderTest.java b/container/openejb-core/src/test/java/org/apache/openejb/core/security/BasicJaccProviderTest.java new file mode 100644 index 0000000..c9d3ce6 --- /dev/null +++ b/container/openejb-core/src/test/java/org/apache/openejb/core/security/BasicJaccProviderTest.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.apache.openejb.core.security; + +import org.apache.openejb.core.security.jacc.BasicJaccProvider; +import org.apache.openejb.junit.ApplicationComposer; +import org.apache.openejb.testing.Classes; +import org.apache.openejb.testing.ContainerProperties; +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.assertTrue; + +@Classes +@RunWith(ApplicationComposer.class) +@ContainerProperties( + @ContainerProperties.Property( + name = "org.apache.openejb.core.security.JaccProvider", + value = "org.apache.openejb.core.security.AbstractSecurityServiceTest$MyJaacProv")) +public class BasicJaccProviderTest { + @Test + public void run() { + assertTrue(MyJaacProv.class.isInstance(JaccProvider.get())); + } + + public static class MyJaacProv extends BasicJaccProvider { + } +}
