using System; using NUnit.Framework; namespace UnityEngine.Analytics.Tests { public partial class AnalyticsEventTests { [Test] public void AchievementUnlocked_AchievementIdTest( [Values("unit_tester", "", null)] string achievementId ) { if (string.IsNullOrEmpty(achievementId)) { Assert.Throws(() => AnalyticsEvent.AchievementUnlocked(achievementId)); } else { Assert.DoesNotThrow(() => m_Result = AnalyticsEvent.AchievementUnlocked(achievementId)); EvaluateAnalyticsResult(m_Result); } } [Test] public void AchievementUnlocked_CustomDataTest() { var achievementId = "unit_tester"; Assert.DoesNotThrow(() => m_Result = AnalyticsEvent.AchievementUnlocked(achievementId, m_CustomData)); EvaluateCustomData(m_CustomData); EvaluateAnalyticsResult(m_Result); } } }