Ejemplo n.º 1
0
        public void AddDetailsTest1()
        {
            StocktakeDetailBLL target  = new StocktakeDetailBLL(); // TODO: Initialize to an appropriate value
            StocktakeDetails   details = null;                     // TODO: Initialize to an appropriate value

            target.AddDetails(details);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Ejemplo n.º 2
0
        public void GetDetailsByUserTest()
        {
            StocktakeDetailBLL    target       = new StocktakeDetailBLL(); // TODO: Initialize to an appropriate value
            StocktakeNotification notification = null;                     // TODO: Initialize to an appropriate value
            User user = null;                                              // TODO: Initialize to an appropriate value
            List <StocktakeDetails> expected = null;                       // TODO: Initialize to an appropriate value
            List <StocktakeDetails> actual;

            actual = target.GetDetailsByUser(notification, user);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Ejemplo n.º 3
0
        public void QueryDetailsTest()
        {
            StocktakeDetailBLL      target    = new StocktakeDetailBLL();  // TODO: Initialize to an appropriate value
            StocktakeDetails        details   = null;                      // TODO: Initialize to an appropriate value
            Nullable <DateTime>     dateStart = new Nullable <DateTime>(); // TODO: Initialize to an appropriate value
            Nullable <DateTime>     dateEnd   = new Nullable <DateTime>(); // TODO: Initialize to an appropriate value
            List <StocktakeDetails> expected  = null;                      // TODO: Initialize to an appropriate value
            List <StocktakeDetails> actual;

            actual = target.QueryDetails(details, dateStart, dateEnd);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Ejemplo n.º 4
0
        public void StocktakeDetailBLLConstructorTest1()
        {
            StocktakeDetailBLL target = new StocktakeDetailBLL();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }