Testing Events
Test events are only visible to test users, this is great for testing an event before it goes live to your users.
The Arena SDK provides two mechanism for testing events.
#
Testing via the DashboardYou can set a set of your user as test using by defining either GAID or IDFA on the Test panel.
#
Creating Test BuildsYou can also set up your entire build to be test build by passing a boolean to isTestUser
while initialising the SDK
using Jambox.Tourney.Connector;
void Initialize() { bool IsTestUser = true; ArenaSDKEvent.Instance.InitializeArenaSdk("GameUserName","game-user-id",IsTestUser); }