public void TestInitialize()
        {
            base.Initialize();
            MockLicensingFactory = new MockLicensingFactoryImpl();
            License license = MockLicensingFactory.NewMockLicense();

            MockLicenseImpl = (MockLicenseImpl)license;
        }
Exemple #2
0
        public License NewMockLicense()
        {
            MockLicenseImpl license = new MockLicenseImpl();

            return(license);
        }