Package org.candlepin.gutterball.report

Examples of org.candlepin.gutterball.report.ReportResult


        }
    }

    @Test
    public void testValidReportRun() {
        ReportResult result = mock(ReportResult.class);
        when(ReportsResourceModule.MOCK_REPORT.run(uriInfo.getQueryParameters())).thenReturn(result);
        assertEquals(result, reportsResource.run(uriInfo, "test_report_1"));
    }
View Full Code Here

TOP

Related Classes of org.candlepin.gutterball.report.ReportResult

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.