public void AddObjectTest() { PrivateObject param0 = null; // TODO: Initialize to an appropriate value App_Accessor target = new App_Accessor(param0); // TODO: Initialize to an appropriate value object o = null; // TODO: Initialize to an appropriate value target.AddObject(0, o); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void AppConstructorTest() { string name = "Test"; try { App_Accessor target = new App_Accessor(name); target.AddObject(0, new Person()); } catch (Exception ex) { Assert.Fail(ex.Message.ToString()); } }