コード例 #1
0
        public void SelecionarTodosPessoaTest()
        {
            CRM_DAO_Pessoa   target = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value
            List <EntPessoa> actual;

            actual = target.SelecionarTodosPessoa();
        }
コード例 #2
0
        public void InserirPessoaTest()
        {
            CRM_DAO_Pessoa target  = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value
            EntPessoa      Cliente = null;                 // TODO: Initialize to an appropriate value

            target.InserirPessoa(Cliente);
        }
コード例 #3
0
        public void AlterarPessoaTest()
        {
            CRM_DAO_Pessoa target = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value

            target.AlterarPessoa();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #4
0
        public void ConnectionTest()
        {
            CRM_DAO_Pessoa target   = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value
            SqlConnection  expected = null;                 // TODO: Initialize to an appropriate value
            SqlConnection  actual;

            target.Connection = expected;
            actual            = target.Connection;
            Assert.AreEqual(expected, actual);
        }
コード例 #5
0
        public void SelecionarTodosPessoaTest()
        {
            CRM_DAO_Pessoa target   = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value
            List <Pessoa>  expected = null;                 // TODO: Initialize to an appropriate value
            List <Pessoa>  actual;

            actual = target.SelecionarTodosPessoa();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #6
0
        public void ConnectionTest()
        {
            CRM_DAO_Pessoa target   = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value
            SqlConnection  expected = null;                 // TODO: Initialize to an appropriate value
            SqlConnection  actual;

            target.Connection = expected;
            actual            = target.Connection;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #7
0
        public void AlterarPessoaTest()
        {
            CRM_DAO_Pessoa target = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value

            target.AlterarPessoa();
        }
コード例 #8
0
 public void CRM_DAO_PessoaConstructorTest()
 {
     CRM_DAO_Pessoa target = new CRM_DAO_Pessoa();
 }
コード例 #9
0
        public void CRM_DAO_PessoaConstructorTest()
        {
            CRM_DAO_Pessoa target = new CRM_DAO_Pessoa();

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