19 lines
403 B
C#
19 lines
403 B
C#
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);
|
|
}
|
|
}
|
|
} |