Initialize the Test Framework with Default Profile or a custom profile
Namespace:
Hummingbird.TestFramework
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public static bool Initialize(
string ProfilePath = null
)
Public Shared Function Initialize (
Optional ProfilePath As String = Nothing
) As Boolean
public:
static bool Initialize(
String^ ProfilePath = nullptr
)
static member Initialize :
?ProfilePath : string
(* Defaults:
let _ProfilePath = defaultArg ProfilePath null
*)
-> bool
Parameters
- ProfilePath (Optional)
- Type: SystemString
the Full path of the custom profile
Return Value
Type:
BooleanTrue if the framework is initialized, False if the framework is already initialized before.
Remarks
If the test framework has already initialized, it will not be initialized again.
See Also