diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-04-20 19:09:33 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-04-20 19:09:33 -0400 |
| commit | 7c1e566113d59699af1624186c64eca67f063fc6 (patch) | |
| tree | 5a6850a695986872d5d0b09d7dab8421628fe33e /Library/PackageCache/com.unity.test-framework@1.1.11/Documentation~/reference-tests-monobehaviour.md | |
| parent | dd117b77aae1d8be7563b360d05b842a73b7dab2 (diff) | |
| download | Project-Sandbox-7c1e566113d59699af1624186c64eca67f063fc6.tar.gz Project-Sandbox-7c1e566113d59699af1624186c64eca67f063fc6.tar.bz2 Project-Sandbox-7c1e566113d59699af1624186c64eca67f063fc6.zip | |
Upgraded Unity
Diffstat (limited to 'Library/PackageCache/com.unity.test-framework@1.1.11/Documentation~/reference-tests-monobehaviour.md')
| -rw-r--r-- | Library/PackageCache/com.unity.test-framework@1.1.11/Documentation~/reference-tests-monobehaviour.md | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/Library/PackageCache/com.unity.test-framework@1.1.11/Documentation~/reference-tests-monobehaviour.md b/Library/PackageCache/com.unity.test-framework@1.1.11/Documentation~/reference-tests-monobehaviour.md deleted file mode 100644 index 13959d5..0000000 --- a/Library/PackageCache/com.unity.test-framework@1.1.11/Documentation~/reference-tests-monobehaviour.md +++ /dev/null @@ -1,51 +0,0 @@ -# MonoBehaviour tests
-
-`MonoBehaviourTest` is a [coroutine](https://docs.unity3d.com/ScriptReference/Coroutine.html) and a helper for writing [MonoBehaviour](https://docs.unity3d.com/ScriptReference/MonoBehaviour.html) tests.
-
-Yield a `MonoBehaviourTest` when using the `UnityTest` attribute to instantiate the `MonoBehaviour` you wish to test and wait for it to finish running. Implement the `IMonoBehaviourTest` interface on the `MonoBehaviour` to state when the test completes.
-
-## Example
-
-```c#
-[UnityTest]
-public IEnumerator MonoBehaviourTest_Works()
-{
- yield return new MonoBehaviourTest<MyMonoBehaviourTest>();
-}
-
-public class MyMonoBehaviourTest : MonoBehaviour, IMonoBehaviourTest
-{
- private int frameCount;
- public bool IsTestFinished
- {
- get { return frameCount > 10; }
- }
-
- void Update()
- {
- frameCount++;
- }
-}
-```
-
-## MonoBehaviourTest<T>
-
-This is a wrapper that allows running tests on `MonoBehaviour` scripts. Inherits from [CustomYieldInstruction](https://docs.unity3d.com/ScriptReference/CustomYieldInstruction.html).
-
-### Properties
-
-| Syntax | Description |
-| ----------------------- | ------------------------------------------------------------ |
-| `T component` | A `MonoBehaviour` component created for the test and attached to the test’s [GameObject](https://docs.unity3d.com/ScriptReference/GameObject.html). |
-| `GameObject gameObject` | A `GameObject` created as a container for the test component. |
-| `bool keepWaiting` | (Inherited) Returns `true` if the test is not finished yet, which keeps the coroutine suspended. |
-
-## IMonoBehaviourTest
-
-An interface implemented by a `MonoBehaviour` test.
-
-### Properties
-
-| Syntax | Description |
-| --------------------- | ----------------------------------------------- |
-| `bool IsTestFinished` | Indicates when the test is considered finished. |
\ No newline at end of file |
