Esempio n. 1
0
        public void InstanceOK()
        {
            //create an instance of the class we want to create
            clsBatchProductionCollection AllBatchProductions = new clsBatchProductionCollection();

            //test to see that it exists
            Assert.IsNotNull(AllBatchProductions);
        }
Esempio n. 2
0
        public void CountPropertyOK()
        {
            //create an istance of the class we want to create
            clsBatchProductionCollection AllBatchProductions = new clsBatchProductionCollection();
            //create some test data to assign to the property
            Int32 SomeCount = 25;

            //assign the data to the property
            AllBatchProductions.Count = SomeCount;
            //test to see that the two values are the same
            Assert.AreEqual(AllBatchProductions.Count, SomeCount);
        }
Esempio n. 3
0
        public void CountMatchesList()
        {
            //create an instace of the clas we want to create
            clsBatchProductionCollection BatchProductions = new clsBatchProductionCollection();
            //create some test data to assign to the property
            //in this case the dat aneeds to be a list of objects
            List <clsBatchProduction> TestList = new List <clsBatchProduction>();
            //add an item to the list
            //create the item of test data
            clsBatchProduction TestItem = new clsBatchProduction();

            //set its properties
            TestItem.BatchProductionNo = 1;
            TestItem.BatchProduction   = "One";
            //add te item to the test list
            TestList.Add(TestItem);
            //assignt he dat to hthe property
            BatchProductions.AllBatchProductions = TestList;
            // test to see that the two values are the sAME
            Assert.AreEqual(BatchProductions.Count, TestList.Count);
        }