| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Text;
- using System.Collections.Generic;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- namespace ComponentTest
- {
- /// <summary>
- /// BuffManagerTest
- /// </summary>
- [TestClass]
- public class BuffManagerTest
- {
- public BuffManagerTest()
- {
- }
- private TestContext testContextInstance;
- public TestContext TestContext
- {
- get
- {
- return testContextInstance;
- }
- set
- {
- testContextInstance = value;
- }
- }
- [TestMethod]
- public void TestMethod1()
- {
- }
- }
- }
|