Package org.rhq.server.metrics.migrator.workers

Examples of org.rhq.server.metrics.migrator.workers.RawDataMigrator.estimate()


        when(mockConfig.isRun1DAggregateDataMigration()).thenReturn(false);

        RawDataMigrator mockRawDataMigrator = mock(RawDataMigrator.class);
        PowerMockito.whenNew(RawDataMigrator.class).withArguments(eq(mockConfig)).thenReturn(mockRawDataMigrator);
        long estimateExpected = 1234L;
        when(mockRawDataMigrator.estimate()).thenReturn(estimateExpected);

        //create object to test and inject required dependencies
        DataMigrator objectUnderTest = new DataMigrator(mockEntityManager, mockCassandraSession, databaseType);

        //run code under test
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.