Search Issue Tracker
By Design
Votes
0
Found in
2017.4.0f1
2018.3.0a1
2018.3.0b12
2019.1.0b4
2019.3.0a6
Issue ID
1109130
Regression
No
Test Runner's results change after first Test run when using Singleton
To reproduce:
1. Open attached project ("SingletonInstancesTest")
2. In Test Runner window click "Run All"
- Tests return positive
3. Run Tests again
- Tests return negative
Expected: Results are the same after every run
Actual: Results change to negative after first run
Reproduced with: 2017.4.20f2, 2018.3.6f1, 2019.1.0b4, 2019.2.0a6
Note:
- Issue occurs only when tests are run EditMode
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Resolution Note:
The test is working as intended.
The singleton is being reinitialized whenever it is not present in its static variable, which will only happen after a domain reload. When running an editmode test, no domain reload will happen, unless needed. Thus the singleton from the previous run still exists.
A recommend solution could be to do a TearDown in the test, which destroys the singleton, as cleanup.