Class DesktopInputFieldTests
Implements
IPrebuildSetup
Inherited Members
Namespace: InputfieldTests
Assembly: UnityEngine.UI.Tests.dll
Syntax
public class DesktopInputFieldTests : BaseInputFieldTests, IPrebuildSetup
Fields
kPrefabPath
Declaration
protected const string kPrefabPath = "Assets/Resources/DesktopInputFieldPrefab.prefab"
Field Value
Type | Description |
---|---|
string |
Methods
DoesNotFocusOnPointerClickWithRightOrMiddleButton()
Declaration
[UnityTest]
public IEnumerator DoesNotFocusOnPointerClickWithRightOrMiddleButton()
Returns
Type | Description |
---|---|
IEnumerator |
FocusOnPointerClickWithLeftButton()
Declaration
[UnityTest]
[UnityPlatform(exclude = new RuntimePlatform[] { RuntimePlatform.Switch })]
public IEnumerator FocusOnPointerClickWithLeftButton()
Returns
Type | Description |
---|---|
IEnumerator |
OnetimeTearDown()
Declaration
[OneTimeTearDown]
public void OnetimeTearDown()
Setup()
Implement this method to call actions automatically before the build process.
Declaration
public void Setup()
Examples
[TestFixture]
public class CreateSpriteTest : IPrebuildSetup
{
Texture2D m_Texture;
Sprite m_Sprite;
public void Setup()
{
#if UNITY_EDITOR
var spritePath = "Assets/Resources/Circle.png";
var ti = UnityEditor.AssetImporter.GetAtPath(spritePath) as UnityEditor.TextureImporter;
ti.textureCompression = UnityEditor.TextureImporterCompression.Uncompressed;
ti.SaveAndReimport();
#endif
}
[SetUp]
public void SetUpTest()
{
m_Texture = Resources.Load<Texture2D>("Circle");
}
[Test]
public void WhenNullTextureIsPassed_CreateShouldReturnNullSprite()
{
// Check with Valid Texture.
LogAssert.Expect(LogType.Log, "Circle Sprite Created");
Sprite.Create(m_Texture, new Rect(0, 0, m_Texture.width, m_Texture.height), new Vector2(0.5f, 0.5f));
Debug.Log("Circle Sprite Created");
// Check with NULL Texture. Should return NULL Sprite.
m_Sprite = Sprite.Create(null, new Rect(0, 0, m_Texture.width, m_Texture.height), new Vector2(0.5f, 0.5f));
Assert.That(m_Sprite, Is.Null, "Sprite created with null texture should be null");
}
}
TearDown()
Declaration
[TearDown]
public virtual void TearDown()
TestSetup()
Declaration
[SetUp]
public virtual void TestSetup()
Implements
UnityEngine.TestTools.IPrebuildSetup