Exemplo n.º 1
0
        public void GetStorebyID()
        {
            Store expected = new Store("S1", "X", "Here 4"); // THIS exists in DB by SQL injection
            Store find     = handler.GetStorebyID("S1");

            Assert.AreEqual(expected, find);
        }