public LogoutProcessorTests()
        {
            this.authenticationManager = Substitute.For <IAuthenticationManager>();
            this.logService            = Substitute.For <ILogService <CommonLog> >();

            this.logoutProcessor = new LogoutProcessor(this.authenticationManager, this.logService);
        }
 public LogoutProcessorTests()
 {
     _authenticationService = new Mock <IAuthenticationService>();
     _processor             = new LogoutProcessor(_authenticationService.Object);
     _player = new Player("Wktb8xUwmyZCtqUF7qvAGXeWPCt2", "7r78", "*****@*****.**");
 }
Beispiel #3
0
 void Awake()
 {
     _processor = new LogoutProcessor(InterfaceFinder.Find <IAuthenticationService>());
 }
        private void LogoutBtnClick(object sender, EventArgs e)
        {
            var newLogout = new LogoutProcessor();

            newLogout.Logout();
        }