public void AddMessageTest() { // TODO: add unit test for the method 'AddMessage' string appId = null; // TODO: replace null with proper value string queueName = null; // TODO: replace null with proper value QueueBody body = null; // TODO: replace null with proper value var response = instance.AddMessage(appId, queueName, body); Assert.IsInstanceOf <List <QueueMessage> > (response, "response is List<QueueMessage>"); }
public void ClearTest() { // TODO: add unit test for the method 'Clear' string appId = null; // TODO: replace null with proper value string queueName = null; // TODO: replace null with proper value QueueBody body = null; // TODO: replace null with proper value var response = instance.Clear(appId, queueName, body); Assert.IsInstanceOf <Queue> (response, "response is Queue"); }
public void Init() { instance = new QueueBody(); }