@Test
  public void testWithForcedDCRInsstrumentation() throws Exception {
    final GrinderProperties properties = new GrinderProperties();
    properties.setBoolean("grinder.dcrinstrumentation", true);

    final DCRContextImplementation context = DCRContextImplementation.create(null);

    final List<Instrumenter> instrumenters =
        new JythonScriptEngineService(properties, context, m_pyScript).createInstrumenters();

    assertEquals(1, instrumenters.size());

    final Instrumenter instrumenter = instrumenters.get(0);

    assertEquals(
        "byte code transforming instrumenter for Jython 2.1/2.2", instrumenter.getDescription());
  }