@Rule
public ExpectedException thrown = ExpectedException.none();
@Test
public void build_file_measure() {
SensorStorage storage = mock(SensorStorage.class);
DefaultMeasure<Integer> newMeasure = new DefaultMeasure<Integer>(storage)
.forMetric(CoreMetrics.LINES)
.onFile(new DefaultInputFile("foo", "src/Foo.php"))
.withValue(3);