private MonitorLabelPrefixSpecification specification;
@Test
public void shouldBeSatisfiedWhenMonitorStartWithLabelOfSpecification() {
specification = new MonitorLabelPrefixSpecification("t");
assertThat(specification.isSatisfiedBy(new TestMonitor("test1")), is(true));
assertThat(specification.isSatisfiedBy(new TestMonitor("Test1")), is(true));
assertThat(specification.isSatisfiedBy(new TestMonitor("monitor")), is(false));
}