Ejemplo n.º 1
0
                public void ReturnsTrueWhenPropertyExists()
                {
                    var props = new ObjectWithProperties();

                    props.Properties["Key"] = "value";
                    props.ContainsProperty("Key").ShouldBeTrue();
                }
Ejemplo n.º 2
0
                public void ThrowsExceptionWhenKeyIsEmptyString()
                {
                    var props = new ObjectWithProperties();

                    Should.Throw <ArgumentException>(() => props.ContainsProperty(string.Empty));
                    Should.Throw <ArgumentException>(() => props.ContainsProperty(""));
                }
Ejemplo n.º 3
0
                public void ThrowsExcecptionWhenCanNotConvert()
                {
                    var props = new ObjectWithProperties();

                    props.Properties["Key"] = "value";
                    Should.Throw <InvalidCastException>(() => props.GetPropertyValueAs <FakeType>("Key"));
                }
Ejemplo n.º 4
0
                public void ThrowsExceptionWhenKeyIsNotFound()
                {
                    var props = new ObjectWithProperties();

                    props.Properties["Key"] = "value";

                    Should.Throw <DynamicValueNotFoundException>(() => props.GetPropertyValueAs <string>("AnotheKey"));
                }
Ejemplo n.º 5
0
                public void ThrowsExceptionWhenKeyIsNull()
                {
                    var props = new ObjectWithProperties();

                    props.Properties["Key"] = "value";

                    Should.Throw <ArgumentNullException>(() => props.GetPropertyValueAs <string>(null));
                }
Ejemplo n.º 6
0
                public void ThrowsExceptionWhenKeyIsEmptyString()
                {
                    var props = new ObjectWithProperties();

                    props.Properties["Key"] = "value";

                    Should.Throw <ArgumentException>(() => props.GetPropertyValueAs <string>(string.Empty));
                    Should.Throw <ArgumentException>(() => props.GetPropertyValueAs <string>(""));
                }
Ejemplo n.º 7
0
            public void StoresAndReturnsValue()
            {
                var props = new ObjectWithProperties();

                props.Properties["Key"] = "value";
                var val = props.Properties["Key"];

                Assert.True(val.Equals("value"));
            }
Ejemplo n.º 8
0
            public void PropertyNotInitializedUntilFirstAccess()
            {
                var props = new ObjectWithProperties();

                props.IsInitialized.ShouldBeFalse();

                props.Properties["Key"] = "value";

                props.IsInitialized.ShouldBeTrue();
            }
Ejemplo n.º 9
0
                public void CovertsBetweenTypes()
                {
                    var props = new ObjectWithProperties();

                    props.Properties["MyNumber"] = 50;

                    var val = props.GetPropertyValueAs <string>("MyNumber");

                    val.GetType().ShouldBe(typeof(string));
                    val.Equals("50").ShouldBeTrue();
                }
Ejemplo n.º 10
0
                public void ReturnsValueAsSpecifiedType()
                {
                    var props = new ObjectWithProperties();

                    props.Properties["Key"] = "value";

                    var val = props.GetPropertyValueAs <string>("Key");

                    val.Equals("value").ShouldBeTrue();
                    val.GetType().ShouldBe(typeof(string));
                }
Ejemplo n.º 11
0
            public void ThrowsExceptionWhenIndexDoesNotExists()
            {
                var props = new ObjectWithProperties();

                Should.Throw <KeyNotFoundException>(() => { var x = props.Properties["Key"]; });
            }
Ejemplo n.º 12
0
                public void ReturnsFalseWhenPropertyDoesNotExist()
                {
                    var props = new ObjectWithProperties();

                    props.ContainsProperty("Key1").ShouldBeFalse();
                }
Ejemplo n.º 13
0
                public void ThrowsExceptionWhenKeyIsNull()
                {
                    var props = new ObjectWithProperties();

                    Should.Throw <ArgumentNullException>(() => props.ContainsProperty(null));
                }