Example #1
0
 /// <summary>
 /// Override of TestFmwk method to get the test suite description from the
 /// DESCRIPTION field of the module info.
 /// </summary>
 ///
 protected internal override String GetDescription()
 {
     TestDataModule_Constants.DataMap info = ModuleInfo();
     if (info != null)
     {
         // return info.getString(TestDataModule.DESCRIPTION);
     }
     return(null);
 }
Example #2
0
 /// <summary>
 /// Override of TestFmwk method to get the test method description from the
 /// DESCRIPTION field of the test info.
 /// </summary>
 ///
 protected internal override String GetMethodDescription(String methodName)
 {
     if (OpenTestData(methodName))
     {
         TestDataModule_Constants.DataMap info = TestInfo();
         if (info != null)
         {
             // return info.getString(TestDataModule.DESCRIPTION);
         }
     }
     return(null);
 }