You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
501 B
23 lines
501 B
using System; |
|
using System.Collections; |
|
using System.Collections.Generic; |
|
using System.IO; |
|
using NUnit.Framework; |
|
using UnityEditor; |
|
using UnityEngine; |
|
using UnityEngine.EventSystems; |
|
using UnityEngine.TestTools; |
|
using UnityEngine.UI; |
|
using UnityEngine.UI.Tests; |
|
using Object = UnityEngine.Object; |
|
|
|
namespace ToggleTest |
|
{ |
|
class TestableToggleGroup : ToggleGroup |
|
{ |
|
public bool ToggleListContains(Toggle toggle) |
|
{ |
|
return m_Toggles.Contains(toggle); |
|
} |
|
} |
|
}
|
|
|