Esempio n. 1
0
        public void TestCreateGenericSingletonService()
        {
            ServiceBase <IContract> srv;

            srv = new GenericSingletonService <IContract, ContractImplementation>();
            Assert.AreEqual("salut", srv.GetImplementation().Echo("salut"));
        }