public void AddTest() { RequestException target = new RequestException(); // TODO: Initialize to an appropriate value Exception ex = new Exception(); // TODO: Initialize to an appropriate value target.Add(ex); Assert.AreEqual(1, target.Exceptions.Count); }
public void RequestExceptionConstructorTest() { RequestException target = new RequestException(); Assert.AreEqual(0, target.Exceptions.Count); }