Skip to content

Commit 6239abe

Browse files
author
Unity CI Bot
committed
Mirror com.unity.ugui package (Unity 6000.4.0a2)
1 parent cc85035 commit 6239abe

File tree

6 files changed

+5
-11
lines changed

6 files changed

+5
-11
lines changed

com.unity.ugui/Tests/Editor/TMP/FontEngineTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
using NUnit.Framework;
44
using UnityEngine.TextCore.LowLevel;
55

6-
76
namespace TMPro
87
{
98
[Category("Text Parsing & Layout")]
10-
class FontEngineTests
9+
internal class FontEngineTests
1110
{
1211
[OneTimeSetUp]
1312
public void Setup()

com.unity.ugui/Tests/Editor/TMP/TMP_ControlTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace TMPro
77
{
8-
public class TMP_ControlTests
8+
internal class TMP_ControlTests
99
{
1010
Scene scene;
1111
[SetUp]

com.unity.ugui/Tests/Editor/TMP/TMP_EditorTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
using NUnit.Framework;
44
using System.IO;
55

6-
76
namespace TMPro
87
{
98
[Category("Text Parsing & Layout")]
10-
class TMP_EditorTests
9+
internal class TMP_EditorTests
1110
{
1211
private TextMeshPro m_TextComponent;
1312

com.unity.ugui/Tests/Runtime/TMP/TMP_CanvasTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
using UnityEngine.UI;
66
using UnityEngine.EventSystems;
77

8-
98
namespace TMPro
109
{
11-
public class TMP_CanvasTests
10+
internal class TMP_CanvasTests
1211
{
1312
[OneTimeSetUp]
1413
public void Setup()

com.unity.ugui/Tests/Runtime/TMP/TMP_RuntimeTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace TMPro
1010
{
1111
[Category("Text Parsing & Layout")]
12-
class TMP_RuntimeTests
12+
internal class TMP_RuntimeTests
1313
{
1414
private TextMeshPro m_TextComponent;
1515

com.unity.ugui/Tests/Runtime/UGUI/ScrollRect/ScrollRectTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ public void OneTimeTearDown()
8383

8484
#region Enable disable scrollbars
8585

86-
[UnityTest, Ignore("Disabled for Instability https://jira.unity3d.com/browse/UUM-42513")]
8786
[TestCase(true, ExpectedResult = null)]
8887
[TestCase(false, ExpectedResult = null)]
8988
public IEnumerator OnEnableShouldAddListeners(bool isHorizontal)
@@ -107,7 +106,6 @@ public IEnumerator OnEnableShouldAddListeners(bool isHorizontal)
107106
Assert.AreEqual(callCount + 1, (int)property.GetValue(invokeableCallList, null));
108107
}
109108

110-
[UnityTest, Ignore("Disabled for Instability https://jira.unity3d.com/browse/UUM-42513")]
111109
[TestCase(true, ExpectedResult = null)]
112110
[TestCase(false, ExpectedResult = null)]
113111
public IEnumerator OnDisableShouldRemoveListeners(bool isHorizontal)
@@ -129,7 +127,6 @@ public IEnumerator OnDisableShouldRemoveListeners(bool isHorizontal)
129127
Assert.AreEqual(0, (int)property.GetValue(invokeableCallList, null));
130128
}
131129

132-
[Test, Ignore("Disabled for Instability https://jira.unity3d.com/browse/UUM-42513")]
133130
[TestCase(true)]
134131
[TestCase(false)]
135132
public void SettingScrollbarShouldRemoveThenAddListeners(bool testHorizontal)

0 commit comments

Comments
 (0)