public void WillGetStats()
        {
            _player.Strength = 100;
            _player.Int      = 90;
            _player.Dex      = 25;

            Assert.AreEqual(100, MobileCommands.Str());
            Assert.AreEqual(90, MobileCommands.Int());
            Assert.AreEqual(25, MobileCommands.Dex());
        }