Package com.wesabe.api.tests.util

Examples of com.wesabe.api.tests.util.MockResourceContext


    private QueryStatistics queryStats;
    private HibernateStatsResource resource;

    @Before
    public void setup() throws Exception {
      this.context = new MockResourceContext();

      this.queryStats = mock(QueryStatistics.class);
      when(queryStats.getExecutionAvgTime()).thenReturn(1L);
      when(queryStats.getExecutionCount()).thenReturn(2L);
      when(queryStats.getExecutionMaxTime()).thenReturn(3L);
View Full Code Here


    private OldIntervalSummaryResource resource;

    @SuppressWarnings("unchecked")
    @Before
    public void setup() throws Exception {
      this.context = new MockResourceContext();

      this.currency = new CurrencyParam("GBP");
     
      this.intervalType = new IntervalTypeParam("weekly");
     
View Full Code Here

TOP

Related Classes of com.wesabe.api.tests.util.MockResourceContext

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.