public void TestMethod1()
        {
            // Arrange
            LegalPersonModel       legalPerson = new LegalPersonModel("JCGETSOFTWARE", "1233333", "11298978699", "12321321");
            LegalPersonCoordinator coordinator = new LegalPersonCoordinator(legalPerson);

            // Act
            Investigation investigation = coordinator.Run();

            // Assert
            Assert.AreEqual(investigation.Completed, true);
        }
        public void TestMethod1()
        {
            // Arrange
            var exampleLegalPerson = new LegalPersonModel
            {
                CNPJ = "87676557000125"
            };

            // Act
            var coordinator = new LegalPersonCoordinator(exampleLegalPerson).StartSearch();

            // Assert
            Assert.AreEqual(coordinator.ResultadoFinal.Completed, true);
        }
        public void TestMethod1()
        {
            // Arrange
            var exampleLegalPerson = new LegalPersonModel
            {
                NomeFantasia  = "PETROBRASIL",
                CNPJ          = "1111111111",
                CPFDoFundador = "2222222222",
                Contador      = "333333333",
            };
            var coordinator = new LegalPersonCoordinator(exampleLegalPerson);

            // Act
            var investigation = coordinator.Run();

            // Assert
            Assert.AreEqual(investigation.Completed, true);
        }