public void StopSession() { var session = Controller.CreateSession("sanya", "123"); Assert.IsTrue(Controller.IsSessionValid(session.Name, session.SessionKey)); Controller.StopSession(session.Name, session.SessionKey); Assert.IsFalse(Controller.IsSessionValid(session.Name, session.SessionKey)); }