Ejemplo n.º 1
0
        public void ByLevel_ValidArgs()
        {
            var elevation = 100;
            var level     = Level.ByElevation(elevation);

            Assert.NotNull(level);

            var view = CeilingPlanView.ByLevel(level);

            Assert.NotNull(view);
        }
Ejemplo n.º 2
0
 public void ByLevel_BadArgs()
 {
     Assert.Throws(typeof(ArgumentNullException), () => CeilingPlanView.ByLevel(null));
 }