using GeradoresService; using GeradoresService.DAL; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; namespace UnitTest { public class Geradores { private readonly GeradoresContext _context; [Fact] public void GenerateCC() { var cc = CartaoCidadao.Generate(); Console.WriteLine(cc); } } }