32 lines
645 B
C#
32 lines
645 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Guru.Editor
|
||
|
|
{
|
||
|
|
using NUnit.Framework;
|
||
|
|
using Guru;
|
||
|
|
|
||
|
|
|
||
|
|
public class DMAValueTests
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
[Test]
|
||
|
|
public static void TestDMAValue()
|
||
|
|
{
|
||
|
|
|
||
|
|
GoogleDMAHelper.SetDMAStatus("0");
|
||
|
|
Debug.Log($"\n-----------\n\n");
|
||
|
|
|
||
|
|
GoogleDMAHelper.SetDMAStatus("1011");
|
||
|
|
Debug.Log($"\n-----------\n\n");
|
||
|
|
|
||
|
|
GoogleDMAHelper.SetDMAStatus("10000010");
|
||
|
|
Debug.Log($"\n-----------\n\n");
|
||
|
|
|
||
|
|
GoogleDMAHelper.SetDMAStatus("1111111110");
|
||
|
|
Debug.Log($"\n-----------\n\n");
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|