Ejemplo n.º 1
0
        public void IncrementFrom12To14()
        {
            VersionInt version = 12;

            version++;

            Assert.AreEqual(14, version);
        }
Ejemplo n.º 2
0
        public void BeCreatedAndComparableAsInt()
        {
            VersionInt version = 10;

            Assert.AreEqual(10, version);
        }
Ejemplo n.º 3
0
        public void RaiseExceptionGiven13AsStartingValue()
        {
            VersionInt version = 13;

            Assert.Fail("Should not get here without an exception.");
        }