@Test
  public void testThatInterpreterCanHaveAFixtureSpecifiedInSecondCell() {
    tables =
        parse(
            "["
                + InterpreterExpectingAFixture.class.getName()
                + "]["
                + Target.class.getName()
                + "]");

    execute(document());
    assertNotAnnotated(tables.at(0, 0, 0));
    assertNotAnnotated(tables.at(0, 0, 1));
  }
 @Test
 public void testThatFirstCellOfTableCanSpecifyAnInterpreterClass() {
   tables = parse("[" + InterpreterExpectingASystemUnderDevelopment.class.getName() + "]");
   Example cell = tables.at(0, 0, 0);
   execute(document());
   assertNotAnnotated(cell);
 }