Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/NeuralNetworkTest/Library/PackageCache/com.unity.test-framework@1.1.29/Documentation~/reference-tests-parameterized.md
2022-11-12 13:10:03 +01:00

613 B

Parameterized tests

For data-driven testing, you may want to have your tests parameterized. You may use both the NUnit attributes TestCase and ValueSource with a unit test.

Note

: With UnityTest it is recommended to use ValueSource since TestCase is not supported.

Example

static int[] values = new int[] { 1, 5, 6 };

[UnityTest]
public IEnumerator MyTestWithMultipleValues([ValueSource("values")] int value)
{
    yield return null;
}