Ejemplo n.º 1
0
 public void Initialize(string gameId, bool testMode, bool enablePerPlacementLoad)
 {
     Assert.DoesNotThrow(() => m_Platform.Initialize(gameId, testMode, enablePerPlacementLoad));
 }
Ejemplo n.º 2
0
        public void Initialize(string gameId, bool testMode, bool enablePerPlacementLoad)
        {
            var platform = new UnsupportedPlatform();

            Assert.DoesNotThrow(() => platform.Initialize(gameId, testMode, enablePerPlacementLoad, null));
        }
 public void Initialize(string gameId, bool testMode)
 {
     Assert.DoesNotThrow(() => m_Platform.Initialize(gameId, testMode));
 }