예제 #1
0
파일: RVCTest.cs 프로젝트: timeflies/vnoc
        public void DataTest()
        {
            RVC target = new RVC(); // TODO: Initialize to an appropriate value

            byte[] expected = null; // TODO: Initialize to an appropriate value
            byte[] actual;
            target.Data = expected;
            actual      = target.Data;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
예제 #2
0
파일: RVCTest.cs 프로젝트: timeflies/vnoc
        public void DeviceAddressTest()
        {
            RVC  target   = new RVC();  // TODO: Initialize to an appropriate value
            Guid expected = new Guid(); // TODO: Initialize to an appropriate value
            Guid actual;

            target.DeviceAddress = expected;
            actual = target.DeviceAddress;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
예제 #3
0
파일: RVCTest.cs 프로젝트: timeflies/vnoc
        public void RVCConstructorTest()
        {
            RVC target = new RVC();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }