Exemplo n.º 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);
 }
Exemplo n.º 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.");
 }
Exemplo n.º 3
0
 public void CRM_DAO_PessoaConstructorTest()
 {
     CRM_DAO_Pessoa target = new CRM_DAO_Pessoa();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Exemplo n.º 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.");
 }
Exemplo n.º 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.");
 }
Exemplo n.º 6
0
 public void CRM_DAO_PessoaConstructorTest()
 {
     CRM_DAO_Pessoa target = new CRM_DAO_Pessoa();
 }
Exemplo n.º 7
0
 public void AlterarPessoaTest()
 {
     CRM_DAO_Pessoa target = new CRM_DAO_Pessoa(); // TODO: Initialize to an appropriate value
     target.AlterarPessoa();
 }
Exemplo n.º 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();
 }
Exemplo n.º 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);
 }