public void DisposeESightTest() { ESSession esSession = new ESSession(); HWESightHost hwESightHost = new HWESightHost(); hwESightHost.HostIP = "127.0.0.1"; hwESightHost.HostPort = 32102; hwESightHost.LoginAccount = "test"; hwESightHost.LoginPwd = "test"; esSession = new ESSession(); esSession.SetHttpMode(true); esSession.InitESight(hwESightHost, ConstMgr.HWESightHost.DEFAULT_TIMEOUT_SEC); esSession.Open(); bool isSccu = esSession.SaveToDB(); Assert.IsTrue(isSccu); esSession.HClient = null; //esSession.HWESightHost.HostIP = "xxx.xxx.xxx"; esSession.Dispose(); }
public void DisposeTest() { _esSession.Dispose(); }