Exemplo n.º 1
0
  @Test
  public void addANodeAndSampleableGoesUp() {
    double oldValue = sampleable.getValue();

    createNode(db);

    assertThat(sampleable.getValue(), greaterThan(oldValue));
  }
Exemplo n.º 2
0
 @Test
 public void emptyDbHasZeroNodesInUse() {
   assertThat(sampleable.getValue(), is(0d));
 }