TestInstrumentProxy proxy = new TestInstrumentProxy();
ci.setInstrumentProxy( proxy );
assertEquals( "The instrument should not be active.", ci.isActive(), false );
ci.increment();
assertEquals( "The expected count was incorrect.", proxy.getValue(), 1 );
ci.increment();
assertEquals( "The expected count was incorrect.", proxy.getValue(), 2 );