pmProgressManagerTests.cs 639 B

1234567891011121314151617181920212223242526272829
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Tests
  6. {
  7. [TestClass()]
  8. public class pmProgressManagerTests
  9. {
  10. [TestMethod()]
  11. public void GetAllParentProgressNodeIdTest()
  12. {
  13. pmProgressManager manager = new pmProgressManager();
  14. var list = manager.GetAllParentProgressNodeId(104491);
  15. Assert.Fail();
  16. }
  17. [TestMethod()]
  18. public void GetPmProgressDTOsTest()
  19. {
  20. Assert.Fail();
  21. }
  22. public void ReadfileTest()
  23. {
  24. }
  25. }
  26. }