using Microsoft.VisualStudio.TestTools.UnitTesting; using DotNettyFrom.generatecmd; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DotNettyFrom.generatecmd.Tests { [TestClass()] public class CmdGenetorTests { [TestMethod()] public void GetLoginCmdTest() { } [TestMethod()] public void GetHeartbeatTest() { CmdGenetor c = CmdGenetor.GetInstance().SetDeviceId("000000000002"); string cmd = c.GetLoginCmd("3839383630324731313931353530333339393137"); Console.WriteLine(cmd); } } }