mirror of
https://github.com/n0remac/game-jam-2020.git
synced 2025-12-15 20:09:57 -06:00
37 lines
743 B
Python
37 lines
743 B
Python
"""
|
|
tests.py
|
|
A file dedicated to testing our game and ensuring it can run.
|
|
Integrate this into your IDE's workflow to ensure the game runs from top to bottom.
|
|
The tests used here should test all of our game's features as best they can.
|
|
"""
|
|
|
|
|
|
class GameTests:
|
|
"""
|
|
Tests that the Arcade framework runs the game correctly.
|
|
Only tests that it launches and runs for a little bit, not that it is functioning properly.
|
|
"""
|
|
|
|
|
|
class SpriteTests:
|
|
"""
|
|
Tests the Sprite classes as well as the available sprites.
|
|
"""
|
|
|
|
|
|
class LevelTests:
|
|
"""
|
|
Tests the Level class.
|
|
"""
|
|
|
|
|
|
class DungeonTests:
|
|
"""
|
|
Tests the Dungeon class.
|
|
"""
|
|
|
|
class MiscTests:
|
|
"""
|
|
Tests things that don't fit anywhere else.
|
|
"""
|