Ardena Map Unit Test

Anonymous
csharp
02/28/2022 6:23 PM
444 B
12
Indexable
using System.Collections;
using System.Collections.Generic;
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools;

public class MapTest
{
    [Test]
    public void MapIsActive()
    {
        if (Input.GetKeyDown(KeyCode.M))
        {
            Assert.IsTrue(Map.isMapActive);
        }
    }
}
Editor is loading...