29 lines
491 B
C#
29 lines
491 B
C#
|
|
using System;
|
||
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using Guru;
|
||
|
|
using NUnit.Framework;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class GuruUnitTest
|
||
|
|
{
|
||
|
|
private void TestInit(Action callback)
|
||
|
|
{
|
||
|
|
FirebaseUtil.InitFirebase(callback);
|
||
|
|
}
|
||
|
|
|
||
|
|
[Test]
|
||
|
|
public void Test_Tch001()
|
||
|
|
{
|
||
|
|
TestInit(() =>
|
||
|
|
{
|
||
|
|
double value = 0.0100000000899764;
|
||
|
|
Analytics.Tch001ADRev(value);
|
||
|
|
Analytics.Tch02ADRev(value);
|
||
|
|
});
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|