Ejemplo n.º 1
0
        public void SelectedViewportItemTest()
        {
            CustomViewportViewModel target   = new CustomViewportViewModel(); //
            CustomViewportItem      expected = null;                          //
            CustomViewportItem      actual;

            target.SelectedViewportItem = expected;
            actual = target.SelectedViewportItem;
            //Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
Ejemplo n.º 2
0
 public void DestroyTest()
 {
     try
     {
         string             name = string.Empty;                                                            //
         string             thumbnailFullPath    = string.Empty;                                            //
         string             layoutStreamFullPath = string.Empty;                                            //
         CustomViewportItem target = new CustomViewportItem(name, thumbnailFullPath, layoutStreamFullPath); //
         //bool expected = false; //
         bool actual;
         actual = target.Destroy();
         //Assert.AreEqual(expected, actual);
         //Assert.Inconclusive("Verify the correctness of this test method.");
     }
     catch (Exception)
     {
     }
 }
Ejemplo n.º 3
0
 public void CustomViewportThumbnailImagePathTest()
 {
     try
     {
         string             name = string.Empty;                                                              //
         string             thumbnailFullPath    = string.Empty;                                              //
         string             layoutStreamFullPath = string.Empty;                                              //
         CustomViewportItem target   = new CustomViewportItem(name, thumbnailFullPath, layoutStreamFullPath); //
         string             expected = string.Empty;                                                          //
         string             actual;
         target.CustomViewportThumbnailImagePath = expected;
         actual = target.CustomViewportThumbnailImagePath;
         //Assert.AreEqual(expected, actual);
         //Assert.Inconclusive("Verify the correctness of this test method.");
     }
     catch (Exception)
     {
     }
 }