Beispiel #1
0
        public void Constructor_SetsProperties()
        {
            var p = new GravatarProfilePhoto("value", "type");

            Assert.AreEqual("value", p.Value);
            Assert.AreEqual("type", p.Type);
        }
Beispiel #2
0
        public void Constructor_SetsTypeToNull()
        {
            var p = new GravatarProfilePhoto("v");

            Assert.AreEqual("v", p.Value);
            Assert.IsNull(p.Type);
        }
 public void Constructor_SetsTypeToNull() {
     var p = new GravatarProfilePhoto("v");
     Assert.AreEqual("v", p.Value);
     Assert.IsNull(p.Type);
 }
 public void Constructor_SetsProperties() {
     var p = new GravatarProfilePhoto("value", "type");
     Assert.AreEqual("value", p.Value);
     Assert.AreEqual("type", p.Type);
 }