Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public class MyReportService {
  2. DataSource source;
  3. public MyReportService(DataSource ds) {
  4. this.source = ds;
  5. }
  6.  
  7. // Bunch of other methods that do things with with data source.
  8. }
  9.  
  10. DataSource myMockDataSource = generateMyMockDataSourceSomehow();
  11. MyReportService service = new MyReportService(myMockDataSource);
  12.  
  13. Test.startTest();
  14. Integer retVal = service.answerMagicalQuestion();
  15. Test.stopTest();
  16.  
  17. System.assertEquals(42, retVal, 'magical answer wrong');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement