Example #1
0
 public Worker(ILogger <Worker> logger, ITonClient tonClient, ITonPackageManager packageManager)
 {
     _logger         = logger;
     _tonClient      = tonClient;
     _packageManager = packageManager;
 }
Example #2
0
 public TvmModuleTests(TonClientTestsFixture fixture, ITestOutputHelper outputHelper)
 {
     _tonClient          = fixture.CreateClient(outputHelper, true);
     _electorEncodedLazy = new Lazy <Task <string> >(GetElectorEncodedAccount());
 }
Example #3
0
 public AbiModuleTests(TonClientTestsFixture fixture, ITestOutputHelper outputHelper)
 {
     _tonClient = fixture.CreateClient(outputHelper);
 }
 public ProcessModuleTests(TonClientTestsFixture fixture, ITestOutputHelper outputHelper)
 {
     _tonClient = fixture.CreateClient(outputHelper, true);
 }
Example #5
0
 public FreeTonDeployConsumer(ITonClient tonClient, ITonPackageManager tonPackageManager)
 {
     _tonClient         = tonClient;
     _tonPackageManager = tonPackageManager;
 }
Example #6
0
 public ClientModuleTests(ITestOutputHelper outputHelper)
 {
     _client = TestClient.Create(new XUnitTestLogger(outputHelper));
 }
Example #7
0
 public GetServerStatusConsumer(ServerDbContext serverDbContext, ITonClient tonClient)
 {
     _serverDbContext = serverDbContext;
     _tonClient       = tonClient;
 }