Ejemplo n.º 1
0
        public void SetNotificationInformationTestTC_Sw_SessionServiceClasses_0001_A3_C()
        {
            UnitTests.SessionService.SessionServiceClient testSession = new UnitTests.SessionService.SessionServiceClient();
            bool res = testSession.SetNotificationInformation(new System.Guid(), "http://www.google.co.in/");

            Assert.AreEqual(false, res);
        }
Ejemplo n.º 2
0
        public void SetNotificationInformationTestTC_Sw_SessionServiceClasses_0001_A3_D()
        {
            UnitTests.SessionService.SessionServiceClient testSession = new UnitTests.SessionService.SessionServiceClient();
            System.Guid testguid = testSession.Login("admin", "admin");
            bool        res      = testSession.SetNotificationInformation(testguid, "http://www.google.co.in/");

            Assert.AreEqual(true, res);
        }
Ejemplo n.º 3
0
        public void SetNotificationInformationTestTC_Sw_SessionServiceClasses_0001_A3_B()
        {
            UnitTests.SessionService.SessionServiceClient testSession = new UnitTests.SessionService.SessionServiceClient();
            System.Guid testguid = testSession.Login("admin", "admin");
            bool        res      = testSession.SetNotificationInformation(testguid, "");

            Assert.AreEqual(false, res);
        }