PageRenderTime 48ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/QFeedParser.Tests/Meta-Tests/TestKnownValueLoader.cs

#
C# | 20 lines | 17 code | 2 blank | 1 comment | 0 complexity | e2f89be573ed8defaaae453e0c0e75f7 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using NUnit.Framework;
  5. namespace QDFeedParser.Tests.Meta_Tests
  6. {
  7. [TestFixture, Description("Used to ensure that the known value loader functions correctly.")]
  8. public class TestKnownValueLoader
  9. {
  10. [Test]
  11. public void LoadRssKnownValueTests()
  12. {
  13. IList<TestCaseData> testcases = KnownValueTestLoader.LoadRssKnownValueTestCases();
  14. //Assert that the number of test cases retrieved from the loader is greater than 0
  15. Assert.That(testcases.Count > 0);
  16. }
  17. }
  18. }