UnitTest1.cs 455 B

1234567891011121314151617181920212223
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Server;
  3. using System;
  4. namespace TestCase
  5. {
  6. [TestClass]
  7. public class UnitTest1
  8. {
  9. [TestMethod]
  10. public void TestMethod1()
  11. {
  12. string a = "192.16.33.175";
  13. Console.WriteLine(a.Split(".".ToCharArray())[0]);
  14. G.logger.Info("AK97");
  15. }
  16. public void testc(byte[] a)
  17. {
  18. a[1] = 188;
  19. }
  20. }
  21. }