UnitTest1.cs 291B

12345678910111213141516
  1. using System;
  2. using Microsoft.VisualStudio.TestTools.UnitTesting;
  3. namespace DotNettyFromTests
  4. {
  5. [TestClass()]
  6. public class UnitTest1
  7. {
  8. [TestMethod()]
  9. public void TestMethod1()
  10. {
  11. Console.WriteLine("--------------------");
  12. }
  13. }
  14. }