//[Explicit( "choose DeclarativeServicesAttributeDriven.xml in Services.xml before running this test" )] public void ProcessCustomer() { IFulfillmentService s = ctx["FulfillmentService"] as IFulfillmentService; s.ProcessCustomer("BERGS"); //assertions.... }
public void ProcessCustomerViaTxProxyFactoryObject() { IFulfillmentService s = ctx["FulfillmentServiceUsingTxPFO"] as IFulfillmentService; s.ProcessCustomer("BERGS"); //assertions.... }