public void GetAllMetadataTest()
        {
            DashboardController target   = new DashboardController(); // TODO: Initialize to an appropriate value
            string tenantID              = string.Empty;              // TODO: Initialize to an appropriate value
            List <FileMetadata> expected = null;                      // TODO: Initialize to an appropriate value
            List <FileMetadata> actual;

            actual = target.GetAllMetadata(tenantID);
            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
 public void GetAllMetadataTest()
 {
     DashboardController target = new DashboardController(); // TODO: Initialize to an appropriate value
     string tenantID = string.Empty; // TODO: Initialize to an appropriate value
     List<FileMetadata> expected = null; // TODO: Initialize to an appropriate value
     List<FileMetadata> actual;
     actual = target.GetAllMetadata(tenantID);
     Assert.AreEqual(expected, actual);
     //Assert.Inconclusive("Verify the correctness of this test method.");
 }