Ejemplo n.º 1
0
        public void StoreBase_Ctor()
        {
            // Arrange ...
            var options = new OptionsWrapper <StoreOptions>(new StoreOptions());

            // Act ...
            var result = new TestStore(options);

            // Assert ...
            Assert.IsTrue(
                result.GetPropertyValue("Options", true) != null,
                "The Options property wasn't initialized by the ctor."
                );
        }