Questions tagged [testing]
A process of using software to verify expected results and find errors. Many types of testing are possible.
93 questions
22 votes
3 answers
3k views
Reasoning about quest and story deadlocks etc
Are there frameworks for reasoning about questions such as: Given my quest and level design, is it guaranteed that for any combination of player choices there is no way for the player to lock ...
4 votes
1 answer
194 views
Automated playtesting in a 2D platformer
For a hard 2D platformer I'm working on, I want to make an automated playtesting system. The goal is to allow every level to be tested in parallel as part of an automated test suite. These tests would ...
1 vote
1 answer
137 views
Unity PlayMode Tests - Lifecycle Events don't fire when running 21 or more tests together
I'm experiencing an issue with my PlayMode tests, where all tests pass individually, but when running 21 or more tests together (using Run Selected or Run All), the same 2 tests fail. From further ...
0 votes
2 answers
86 views
Testing player preferences in unity
I have a section of a script that is pretty simple and works but I am wondering the best way to rewrite it to be testable. ...
2 votes
1 answer
177 views
How do I view the test going on in Unity Playmode?
I'm working on a new project using TDD, and I'm doing a good job of checking everything from the ground up including checking physics interactions on instantiated prefab, but I've gotten about to the ...
2 votes
2 answers
127 views
If a game automatically downloads addon content it doesn't already have when joining a server, how can I test this without a second computer?
What I want to do is host a local test server that has the file, and connect to it from a local client which doesn't have the file. The only issue is that both the server and the client will look for ...
1 vote
1 answer
135 views
Do game testers have to live locally to be considered?
I've been told by a few former game testers that you must live in their city because game testing has few educational requirements so it's easier to hire someone local. Some descriptions say "you ...
0 votes
1 answer
276 views
How can i write automated tests for some SDL2 objects?
For eg having a class that is rendering something on the screen, could be even a point or a line if not an image or whatever. How is possible to write some tests for that class only? or just a small ...