UnitTestSuiteBase Class
The base class of the classes provided by the Visual Studio template when creating a new test project.
Remarks
This class is used by NUnit 3 template base class SetupFixture. This class encapsulates all the functionality related to running tests and creating the 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 the Visual Studio templates' GlobalSetup to initialize the test class.  
Protected MethodTestSuiteTearDownThis method is called by the Visual Studio templates' GlobalTeardown to clean up the test class.  
Top