UnitTestSuiteBase Class
The base class of the UFT Developer Visual Studio template classes that are provided when creating a new UFT Developer test project. This class is used by NUnit 3 template base class SetupFixture.
Remarks
This class is used by NUnit 3 template base class SetupFixture.This class encapsulates all the functionality related to running UFT Developer tests and creating the UFT Developer HTML report.

C# Syntax

public class UnitTestSuiteBase 
Inheritance Hierarchy

System.Object
   HP.LFT.UnitTesting.UnitTestSuiteBase
      HP.LFT.UnitTesting.UnitTestBase

Public Constructors
Protected Methods
 NameDescription
Protected MethodGetConfigurationAssemblyReturns the System.Reflection.Assembly for the currently loaded configuration.  
Protected MethodGetReportConfigurationReturns a HP.LFT.Report.Configuration.ReportConfiguration instance with the values from the 'App.config' of the assembly returned by GetConfigurationAssembly.  
Protected MethodGetSdkConfigurationReturns an instance with the values from the 'App.config' of the assembly returned by GetConfigurationAssembly.  
Protected MethodTestSuiteSetupThis method is called by UFT Developer Visual Studio templates' GlobalSetup to initialize the test class.  
Protected MethodTestSuiteTearDownThis method is called by UFT Developer Visual Studio templates' GlobalTeardown to clean up the test class.  
Top