Beispiel #1
0
        public void MyTestInitialize()
        {
            target = new EquipListSvcBinaryImpl();

            expectedList1 = new EquipmentList();
            expectedList1.EquipListName = "TestList1";
            expectedList1.EquipListDesc = "TestList1Desc";

            expectedList2 = new EquipmentList();
            expectedList2.EquipListName = "TestList2";
            expectedList2.EquipListDesc = "TestList2Desc";

            userSvc       = new UserSvcBinaryImpl();
            user          = new EquipCheckAppUser();
            user.Username = "******";
            user.Password = "******";
            userSvc.StoreEquipCheckAppUser(user);
            user = userSvc.GetLocalUser(user);
        }
        public void MyTestInitialize()
        {
            target = new CheckListSvcBinaryImpl();

            expectedCheckList = new CheckList();
            expectedCheckList.CheckListName        = "TestCheckList1";
            expectedCheckList.CheckListDesc        = "TestCheckList1Desc";
            expectedCheckList.TripName             = "TestTripName";
            expectedCheckList.TripDesc             = "TestTripDesc";
            expectedCheckList.TripDate             = "TestTripDate";
            expectedCheckList.CheckListItemSummary = "TestCheckList1Summary";

            userSvc       = new UserSvcBinaryImpl();
            user          = new EquipCheckAppUser();
            user.Username = "******";
            user.Password = "******";
            userSvc.StoreEquipCheckAppUser(user);
            user = userSvc.GetLocalUser(user);
        }
Beispiel #3
0
 public void MyTestInitialize()
 {
     target = new UserSvcBinaryImpl();
 }