Package info.archinnov.achilles.schemabuilder.Create

Examples of info.archinnov.achilles.schemabuilder.Create.Options


        when(embeddedIdProperties.getClusteringComponents().getClusteringOrders()).thenReturn(asList(clusteringOrder));
        when(tableOptions.clusteringOrder(clusteringOrdersCaptor.capture())).thenReturn(tableOptions);

        //When
        final Options actual = view.addClusteringOrder(tableOptions);

        //Then
        assertThat(actual).isSameAs(tableOptions);
        assertThat(clusteringOrdersCaptor.getValue()).isSameAs(clusteringOrder);
    }
View Full Code Here

TOP

Related Classes of info.archinnov.achilles.schemabuilder.Create.Options

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.