public void UpdateMirrorTest()
 {
     VideoMirror target = new VideoMirror(); // TODO: Initialize to an appropriate value
     VideoMirror.VideoMirrorInformation info = null; // TODO: Initialize to an appropriate value
     target.UpdateMirror(info);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void RequestNewRectangleTest()
 {
     VideoMirror target = new VideoMirror(); // TODO: Initialize to an appropriate value
     target.RequestNewRectangle();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void RectangleTest()
 {
     VideoMirror target = new VideoMirror(); // TODO: Initialize to an appropriate value
     Rectangle expected = null; // TODO: Initialize to an appropriate value
     Rectangle actual;
     target.Rectangle = expected;
     actual = target.Rectangle;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void VideoMirrorConstructorTest()
 {
     VideoMirror target = new VideoMirror();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
示例#5
0
 public void AddVideoClone(MeTLLib.DataTypes.Video element)
 {
     if (!videoExistsOnCanvas(element) && element.tag().privacy == "public")
     {
         var videoClone = new MeTLLib.DataTypes.VideoMirror();
         videoClone.id = element.tag().id;
         if (videoClone.Rectangle == null)
             videoClone.RequestNewRectangle();
         Children.Add(videoClone);
         InkCanvas.SetLeft(videoClone, element.X);
         InkCanvas.SetTop(videoClone, element.Y);
         videoClone.Height = element.Height;
         videoClone.Width = element.Width;
     }
 }