Пример #1
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);
 }
Пример #2
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.");
 }
Пример #3
0
 public void CRM_DAO_PessoaConstructorTest()
 {
     CRM_DAO_Pessoa target = new CRM_DAO_Pessoa();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Пример #4
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.");
 }
Пример #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 CRM_DAO_PessoaConstructorTest()
 {
     CRM_DAO_Pessoa target = new CRM_DAO_Pessoa();
 }
Пример #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 SelecionarTodosPessoaTest()
 {
     CRM_DAO_Pessoa target = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value
     List<EntPessoa> actual;
     actual = target.SelecionarTodosPessoa();
 }
Пример #9
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);
 }