public class TuscanyFilterTestCase extends TestCase {
public void testStartStopFilter() throws Exception {
SCA sca = EasyMock.createNiceMock(SCA.class);
sca.start();
sca.stop();
EasyMock.replay(sca);
WebappRuntime runtime = createMock(WebappRuntime.class);
expect(runtime.getContext()).andReturn(sca);
runtime.startRequest();
runtime.stopRequest();