Exemple #1
0
        public void Testar_Cadastro_de_Ofertante()
        {
            string nome = "Escola X";

            Ofertante ofertante = new Ofertante(nome);

            Assert.IsNotNull(ofertante);
            Assert.IsTrue(ofertante.nome == nome);
        }
Exemple #2
0
 public void Verificar_Ofertante_Obrigatorio()
 {
     string    nome      = "Escola X";
     Ofertante ofertante = new Ofertante(nome);
 }