AnalyzeJSONIntegrationTests.cs 329 B

12345678910111213141516
  1. using analyzeJSON;
  2. using Xunit;
  3. namespace analyzeJSONTests
  4. {
  5. public class AnalyzeJSONIntegrationTests
  6. {
  7. private static readonly string testFile = @"testFiles/complex.json";
  8. [Fact]
  9. public void AnalyzeJSON_AllGood()
  10. {
  11. var test = new AnalyzeJSON(testFile);
  12. }
  13. }
  14. }