Rasagar/Library/PackageCache/com.unity.test-framework/Documentation~/course/preserve-test-state.md

26 lines
1.4 KiB
Markdown
Raw Normal View History

2024-08-26 13:07:20 -07:00
# 14\. Preserve test state
## Learning objectives
This section will cover how to let variables and information in your tests survive domain reloads using serialization.
## Intro and motivation
When a domain reload happens, all scripts are reloaded. That also means that most data in members of the test class are lost. In some cases that is an issue, as you might want to retain some information during a domain reload.
The solution to that is serialization. If you add a `[SerializeField]` attribute to the field in question, then it will retain its value. Note that there are some limitations to serialization in Unity, see [Unity Serialization](https://docs.unity3d.com/Manual/script-Serialization.html).
## Exercise
The [sample](./welcome.md#import-samples) `14_PreserveTestState` contains the solution for the previous assignment, with one exception; the file name is now a guid.
This means that in order to clean up correctly, the `TearDown` method needs to know the filename.
Currently, when running the test for the first time, the `TearDown` will fail because it's not given a file name. On subsequent runs of the test, it will fail due to duplicate files with the same C# script in it.
The task is to fix this loss of the file name info by using serialization.
## Solution
The solution is simple. Just add a `[SerializeField]` attribute to the filename field. The solution is included as sample `14_PreserveTestState_Solution.`