示例#1
0
 @Test
 public void shouldReportThatPublicationHasBeenConnectedYet() {
   assertTrue(publication.hasBeenConnected());
 }
示例#2
0
 @Test
 public void shouldReportThatPublicationHasNotBeenConnectedYet() {
   when(publicationLimit.getVolatile()).thenReturn(0L);
   assertFalse(publication.hasBeenConnected());
 }