Exemplo n.º 1
0
        public void GListEngine_InsertList_ExpectNullException()
        {
            //Arrange: Seeds the Mocked Accessor's list of GLists
            SeedGLists();


            //Act: Insert a null GList using the GListEngine InsertList() method
            gListEngine.InsertList(null);


            //Assert: Handled by the Expected Exception attribute
        }
Exemplo n.º 2
0
 public void PostList(GList glist)
 {
     _gListEngine.InsertList(glist);
 }