コード例 #1
0
        public void RegisterRequest_AfterStartGame_ShouldNotThrowEx()
        {
            var req = new StartGameRequest(_serverUrl);

            req.Execute();

            string id   = "123456789";
            string name = "Mr Bob";

            var req2 = new RegistrationRequest(_serverUrl, id, name);

            req2.Execute();
        }
コード例 #2
0
        public void StartGameRequest_ShouldNotThrowEx()
        {
            var req = new StartGameRequest(_serverUrl);

            req.Execute();
        }