ctrader-rs 0.1.2

Rust SDK for the cTrader Open API
Documentation
use test_context::{AsyncTestContext, TestContext};

pub(super) struct TestContextSync {}

impl TestContext for TestContextSync {
    fn setup() -> Self {
        Self {}
    }

    fn teardown(self) {}
}

pub(super) struct TestContextASync {}

impl AsyncTestContext for TestContextASync {
    async fn setup() -> Self {
        Self {}
    }

    async fn teardown(self) {}
}