public void DeleteCustomerTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     Customer customer = null; // TODO: Initialize to an appropriate value
     target.DeleteCustomer(customer);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Esempio n. 2
0
        public void DeleteSIPDialplanOptionTest()
        {
            SIPEntitiesDomainService target            = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            SIPDialplanOption        sipDialplanOption = null;                           // TODO: Initialize to an appropriate value

            target.DeleteSIPDialplanOption(sipDialplanOption);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Esempio n. 3
0
        public void UpdateUserTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            User user = null;                                                 // TODO: Initialize to an appropriate value

            target.UpdateUser(user);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
 public void ChangePasswordTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     string oldPassword = string.Empty; // TODO: Initialize to an appropriate value
     string newPassword = string.Empty; // TODO: Initialize to an appropriate value
     target.ChangePassword(oldPassword, newPassword);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Esempio n. 5
0
        public void UpdateSIPDialplanRouteTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            SIPDialplanRoute         currentSIPDialplanRoute = null;          // TODO: Initialize to an appropriate value

            target.UpdateSIPDialplanRoute(currentSIPDialplanRoute);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Esempio n. 6
0
        public void InsertSIPDialplanProviderTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            SIPDialplanProvider      sipDialplanProvider = null;              // TODO: Initialize to an appropriate value

            target.InsertSIPDialplanProvider(sipDialplanProvider);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Esempio n. 7
0
        public void InsertSIPAccountTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            SIPAccount sipAccount           = null;                           // TODO: Initialize to an appropriate value

            target.InsertSIPAccount(sipAccount);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Esempio n. 8
0
        public void ChangePasswordTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            string oldPassword = string.Empty;                                // TODO: Initialize to an appropriate value
            string newPassword = string.Empty;                                // TODO: Initialize to an appropriate value

            target.ChangePassword(oldPassword, newPassword);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Esempio n. 9
0
        public void GetSIPRegistrarBindingsTest()
        {
            SIPEntitiesDomainService         target   = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            IQueryable <SIPRegistrarBinding> expected = null;                           // TODO: Initialize to an appropriate value
            IQueryable <SIPRegistrarBinding> actual;

            actual = target.GetSIPRegistrarBindings();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 10
0
        public void LogoutTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            User expected = null;                                             // TODO: Initialize to an appropriate value
            User actual;

            actual = target.Logout();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 11
0
        public void GetTimeZoneOffsetMinutesTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            int expected = 0;                                                 // TODO: Initialize to an appropriate value
            int actual;

            actual = target.GetTimeZoneOffsetMinutes();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Esempio n. 12
0
        public void LoginTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
            string username     = string.Empty;                               // TODO: Initialize to an appropriate value
            string password     = string.Empty;                               // TODO: Initialize to an appropriate value
            bool   isPersistent = false;                                      // TODO: Initialize to an appropriate value
            string customData   = string.Empty;                               // TODO: Initialize to an appropriate value
            User   expected     = null;                                       // TODO: Initialize to an appropriate value
            User   actual;

            actual = target.Login(username, password, isPersistent, customData);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
 public void SIPEntitiesDomainServiceConstructorTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService();
 }
 public void LogoutTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     User expected = null; // TODO: Initialize to an appropriate value
     User actual;
     actual = target.Logout();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void LoginTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     string username = string.Empty; // TODO: Initialize to an appropriate value
     string password = string.Empty; // TODO: Initialize to an appropriate value
     bool isPersistent = false; // TODO: Initialize to an appropriate value
     string customData = string.Empty; // TODO: Initialize to an appropriate value
     User expected = null; // TODO: Initialize to an appropriate value
     User actual;
     actual = target.Login(username, password, isPersistent, customData);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void IsAliveTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService();
     Assert.AreEqual(true, target.IsAlive());
 }
 public void InsertSIPProviderTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     SIPProvider sipProvider = null; // TODO: Initialize to an appropriate value
     target.InsertSIPProvider(sipProvider);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void InsertSIPDialplanRouteTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     SIPDialplanRoute sipDialplanRoute = null; // TODO: Initialize to an appropriate value
     target.InsertSIPDialplanRoute(sipDialplanRoute);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void GetTimeZoneOffsetMinutesTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.GetTimeZoneOffsetMinutes();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void UpdateSIPDialplanTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     SIPDialPlan currentSIPDialplan = null; // TODO: Initialize to an appropriate value
     target.UpdateSIPDialplan(currentSIPDialplan);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Esempio n. 21
0
 public void SIPEntitiesDomainServiceConstructorTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService();
 }
 public void GetSIPRegistrarBindingsTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     IQueryable<SIPRegistrarBinding> expected = null; // TODO: Initialize to an appropriate value
     IQueryable<SIPRegistrarBinding> actual;
     actual = target.GetSIPRegistrarBindings();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void DeleteSIPDialplanLookupTest()
 {
     SIPEntitiesDomainService target = new SIPEntitiesDomainService(); // TODO: Initialize to an appropriate value
     SIPDialplanLookup sipDialplanLookup = null; // TODO: Initialize to an appropriate value
     target.DeleteSIPDialplanLookup(sipDialplanLookup);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Esempio n. 24
0
        public void IsAliveTest()
        {
            SIPEntitiesDomainService target = new SIPEntitiesDomainService();

            Assert.AreEqual(true, target.IsAlive());
        }