public BaseTest(FredFileType fileType)
    {
        CurrentFileType = fileType;
        string path = "C:\\Users\\sam\\OneDrive\\LeaderAnalytics\\Config\\Vyntix.Fred.FredClient\\apiKey.txt";

        apiKey = System.IO.File.ReadAllText(path);

        Log.Logger = new LoggerConfiguration()
                     .MinimumLevel.Information()
                     .WriteTo.Debug()
                     .CreateLogger();

        Log.Information("Logging has been configured.");
    }
Beispiel #2
0
 public FredClientThrottlingTests(FredFileType fileType) : base(fileType)
 {
 }
Beispiel #3
0
    private const string DOES_NOT_EXIST = "DOES_NOT_EXIST"; // Arbitrary invalid identifier

    public FredClientBasicTests(FredFileType fileType) : base(fileType)
    {
    }
 public ModelTests(FredFileType fileType) : base(fileType)
 {
 }
Beispiel #5
0
 public RegistrationValues UseFileType(FredFileType fileType)
 {
     this.fileType = fileType;
     return(this);
 }
 public VintageComposerSymbolTests(FredFileType fileType) : base(fileType)
 {
 }