BuffManagerTest.cs 525 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Text;
  3. using System.Collections.Generic;
  4. using Microsoft.VisualStudio.TestTools.UnitTesting;
  5. namespace ComponentTest
  6. {
  7. /// <summary>
  8. /// BuffManagerTest
  9. /// </summary>
  10. [TestClass]
  11. public class BuffManagerTest
  12. {
  13. public BuffManagerTest()
  14. {
  15. }
  16. private TestContext testContextInstance;
  17. public TestContext TestContext
  18. {
  19. get
  20. {
  21. return testContextInstance;
  22. }
  23. set
  24. {
  25. testContextInstance = value;
  26. }
  27. }
  28. [TestMethod]
  29. public void TestMethod1()
  30. {
  31. }
  32. }
  33. }