mirror of
https://github.com/imperialsushi/gutterball-3.git
synced 2025-06-15 05:07:42 +00:00

Moving cam replay. Fixed the bugs. New Version 1.42 Moving cam replay. Fixed the bugs. New Version 1.42 Moving cam replay, Fixed the bugs.
22 lines
592 B
C#
22 lines
592 B
C#
using NUnit.Framework;
|
|
|
|
namespace UnityEngine.Analytics.Tests
|
|
{
|
|
public partial class AnalyticsEventTests
|
|
{
|
|
[Test]
|
|
public void GameStart_NoArgsTest()
|
|
{
|
|
Assert.DoesNotThrow(() => m_Result = AnalyticsEvent.GameStart());
|
|
EvaluateAnalyticsResult(m_Result);
|
|
}
|
|
|
|
[Test]
|
|
public void GameStart_CustomDataTest()
|
|
{
|
|
Assert.DoesNotThrow(() => m_Result = AnalyticsEvent.GameStart(m_CustomData));
|
|
EvaluateCustomData(m_CustomData);
|
|
EvaluateAnalyticsResult(m_Result);
|
|
}
|
|
}
|
|
}
|