SettingTest.cs 418 B

1234567891011121314151617181920212223
  1. namespace Quadarax.Application.QLiberace.Base.Tests.Entities
  2. {
  3. [TestFixture(Category = "Dao")]
  4. public class SettingTest
  5. {
  6. [SetUp]
  7. public void Setup()
  8. {
  9. }
  10. [Test]
  11. public void HasPKOK()
  12. {
  13. Assert.Pass();
  14. }
  15. [Test]
  16. public void HasTrackedOK()
  17. {
  18. Assert.Pass();
  19. }
  20. }
  21. }