public void CanAttach_should_throw_exception_if_client_already_exists() { var command = new AttachClient { Id = "android" }; clients.Add("android", "secret"); Assert.Throws <ValidationException>(() => GuardAppClients.CanAttach(clients, command)); }
public void CanAttach_should_not_throw_exception_if_client_is_free() { var command = new AttachClient { Id = "ios" }; clients.Add("android", "secret"); GuardAppClients.CanAttach(clients, command); }
public void CanAttach_should_throw_execption_if_client_id_is_null() { var command = new AttachClient(); Assert.Throws <ValidationException>(() => GuardAppClients.CanAttach(clients, command)); }