ClassRecordGeneratorTests.cs 721 B

123456789101112131415161718192021222324
  1. using CodeGenerators;
  2. namespace CodeGeneratorsTests;
  3. public class ClassRecordGeneratorTests
  4. {
  5. [Fact]
  6. public void BuildTest()
  7. {
  8. var test = new ClassRecordGenerator("TestNamespace", "Test");
  9. test.Usings.Add("ExcelORM");
  10. var property = new Property("TestProperty", "string");
  11. property.Attributes.Add(new AttributeElement("Column", "Test Property"));
  12. test.Properties.Add(property);
  13. var secondProperty = new Property("SecondProperty", "int");
  14. secondProperty.Attributes.Add(new AttributeElement("Column", "Second Property"));
  15. test.Properties.Add(secondProperty);
  16. var result = test.Build();
  17. Assert.NotEmpty(result);
  18. }
  19. }