To use your own framework with LeanFT:
1.Reference the SDK files.
**In Visual Studio:**
Add references to the DLLs located in: SDKDotNet.
**In Eclipse:**
Add the jar files (except the javadoc.jar) from: SDKJava to your build path.
2.Use SDK.Init to initialize the SDK
You use SDK.Init to bring in the settings via the app.config (Visual Studio) or leanft.properties (Eclipse). There is a previous post with information about these files.
The SDK.Init must run once at the beginning of each run.
*If you want to use default values for the SDK, you need only the following line to initialize the SDK:
SDK.Init(newSdkConfiguration();
Alternatively, you can create a LeanFT MSTest or JUnit project and delete the template test (.cs or .java) file that is provided, and then build your framework from there.