Explore Connect Documentation
Snippets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import org.easymock.EasyMock;
import org.testng.annotations.Test;
interface DataLayer {
  void insertReminder(
    final Reminder reminder, long creationTimestampInMillis);
}
class Reminder {
  // Reminder fields go here
}
class Orchestrator {
  private final DataLayer dataLayer;
  public Orchestrator(final DataLayer dataLayer) {
    this.dataLayer = dataLayer;
  }
  public void addReminder(final Reminder reminder) {
    // Validation and pre-processing code goes here
    dataLayer.insertReminder(
      reminder,
      System.currentTimeMillis());
    // ...
  }
}
public class OrchestratorTest {
  @Test
  public void testAddReminder() throws Exception {
    final Reminder reminderToAdd = new Reminder();
    final DataLayer dataLayerMock =
      EasyMock.createStrictMock(DataLayer.class);
    final Orchestrator orchestrator =
      new Orchestrator(dataLayerMock);
    dataLayerMock.insertReminder(
      EasyMock.same(reminderToAdd), EasyMock.anyLong());
    EasyMock.replay(dataLayerMock);
    orchestrator.addReminder(reminderToAdd);
    EasyMock.verify(dataLayerMock);
  }
}
Press desired key combination and then press ENTER.