public void DimeSchedulerClient_Constructor_ShouldCreate() { const string uri = "http://mydimescheduler.io"; IAuthenticator authenticator = new MockAuthenticator(); DimeSchedulerClient client = new(uri, authenticator); Assert.NotNull(client); }
public async Task DimeSchedulerClient_LicenseEndpoint_ShouldCreate() { const string uri = "http://mydimescheduler.io"; IAuthenticator authenticator = new MockAuthenticator(); DimeSchedulerClient client = new(uri, authenticator); ILicenseEndpoint endpoint = await client.License.Request(); Assert.NotNull(endpoint); }