@Before
public void setUp() throws Exception {
MockCourierFactory.install();
MockRegistry.install();
EPR epr2 = new EPR(new URI("2"));
courier1 = new MockCourier(false); // Will fail
courier2 = new MockCourier(true); // Will work
MockRegistry.register("cat", "servicex", courier1);
MockRegistry.register("cat", "servicex", epr2, courier2);
}