Package org.apache.qpid.server.model

Examples of org.apache.qpid.server.model.Statistics


        when(mockConfiguredObject.getAttribute(attributeName)).thenReturn(attributeValue);
    }

    private Statistics createMockStatistics(String statName, int statValue)
    {
        Statistics mockStatistics = mock(Statistics.class);
        when(mockStatistics.getStatisticNames()).thenReturn(Arrays.asList(statName));
        when(mockStatistics.getStatistic(statName)).thenReturn(statValue);
        return mockStatistics;
    }
View Full Code Here

TOP

Related Classes of org.apache.qpid.server.model.Statistics

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.