public void StatisticsConstructorTest() { string initValue = "secret test string"; Statistics target = new Statistics(initValue); Assert.AreEqual(target.Value, initValue, "Object value should be identical after construction"); }
public void StatisticsTest() { ProfileEntry target = new ProfileEntry(); // TODO: Initialize to an appropriate value Statistics expected =new Statistics(); Statistics actual; target.Statistics = expected; actual = target.Statistics; Assert.AreEqual(expected, actual); }
public void StatisticsConstructorTest1() { Statistics target = new Statistics(); Assert.IsNull(target.Value, "Object value should be null after construction"); }