Package info.archinnov.achilles.internal.context

Examples of info.archinnov.achilles.internal.context.DaoContext


    }

    @Test
    public void should_build_dao_context() throws Exception {
        // Given
        DaoContext daoContext = mock(DaoContext.class);
        when(factory.create(session, parsingResult, configContext)).thenReturn(daoContext);

        // When
        DaoContext actual = bootstrapper.buildDaoContext(session, parsingResult, configContext);

        // Then
        assertThat(actual).isSameAs(daoContext);
    }
View Full Code Here

TOP

Related Classes of info.archinnov.achilles.internal.context.DaoContext

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.