Package com.tacitknowledge.flip.context

Examples of com.tacitknowledge.flip.context.ContextDescriptor


    }
   
    @Test
    public void testAnonymousAnnotatedMethodShouldBeMap() throws Exception {
        TestContextProvider contextProvider = new TestContextProvider();
        ContextDescriptor contextDescriptor = contextDescriptorFactory.createContextDescriptor(contextProvider);
       
        Method method = contextProvider.getClass().getMethod("getAnonMethod");
        assertThat(contextDescriptor.getAnonymousProperties(), Matchers.not(Matchers.hasItem(method)));
        assertThat(contextDescriptor.getProperties().values(), Matchers.not(Matchers.hasItem(method)));
    }
View Full Code Here

TOP

Related Classes of com.tacitknowledge.flip.context.ContextDescriptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.