public void SentryUnity_OptionsInvalid_DoesNotInitialize() { var options = new SentryUnityOptions(); // Even tho the defaults are set the DSN is missing making the options invalid for initialization SentryUnity.Init(options); Assert.IsFalse(SentrySdk.IsEnabled); }
internal static IDisposable InitSentrySdk(Action <SentryUnityOptions> configure) { SentryUnity.Init(options => { options.Dsn = "https://[email protected]/5439417"; configure.Invoke(options); }); return(new SentryDisposable()); }
public void SentryUnity_OptionsValid_Initializes() { var options = new SentryUnityOptions { Dsn = "https://[email protected]/5439417" }; SentryUnity.Init(options); Assert.IsTrue(SentrySdk.IsEnabled); }