@Test public void stateWithTrueExpressionSunnyDay() throws Exception { Assert.state(true); }
@Override public void remove() { Assert.state(this.last != null); ConcurrentReferenceHashMap.this.remove(this.last.getKey()); }
@Test(expected = IllegalStateException.class) public void stateWithFalseExpressionThrowsException() throws Exception { Assert.state(false); }