Microsoft.Ccr.Core.PortTest.TestWithEmptyPort C# (CSharp) Method

TestWithEmptyPort() private method

private TestWithEmptyPort ( ) : void
return void
        public void TestWithEmptyPort()
        {
            var p = new Port<int> ();

            int res = 99;
            Assert.IsFalse (p.Test (out res), "#1");
            Assert.AreEqual (0, res, "#2");
        }