public void CaptureProvider203ConstructorTest()
        {
            CaptureProvider203 target = new CaptureProvider203();

            Assert.IsInstanceOfType(target, typeof(ICaptureProvider));
            Assert.IsInstanceOfType(target, typeof(ICaptureProfiles));
            Assert.IsInstanceOfType(target, typeof(CaptureProvider));
        }
        public void CaptureProfilesTest()
        {
            ICaptureProfiles target = new CaptureProvider203(); // TODO: Initialize to an appropriate value
            List <IProperty> actual;

            actual = target.CaptureProfiles;
            Assert.AreEqual(0, actual.Count);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void SetCaptureProfilesTest()
        {
            CaptureProvider203 target          = new CaptureProvider203(); // TODO: Initialize to an appropriate value
            List <IProperty>   captureProfiles = null;                     // TODO: Initialize to an appropriate value

            target.SetCaptureProfiles(captureProfiles);
            List <IProperty> actual = ((ICaptureProfiles)target).CaptureProfiles;

            Assert.AreEqual(0, actual.Count);
            //Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }