-
Notifications
You must be signed in to change notification settings - Fork 123
Install
GUT is a Godot Plugin. You can download it directly or install it from the Asset Lib in the Godot Editor.
Follow the instructions or checkout this tutorial by Rainware: https://www.youtube.com/watch?v=vBbqlfmcAlc
- Click the AssetLib button at the top of the editor
- Search for "Gut"
- Click it.
- Click "Install". This will kick off the download.
- Click the 2nd "Install" button that appears when the download finishes. It will be in a little dialog at the bottom of the AssetLib window.
- Click the 3rd "Install" button.
- You did it!
Finish the install by following the instructions in Setup below.
Download and extract the zip from the releases or from the Godot Asset Library.
Extract the zip and place the gut
directory into your addons
directory in your project. If you don't have an addons
folder at the root of your project, then make one and THEN put the gut
directory in there.
Finish the install by following the instructions in Setup below.
- From the menu choose Project->Project Settings, click the Plugins tab and activate Gut.
The next few steps cover the suggested configuration. Feel free to deviate where you see fit.
- Create directories to store your tests and test related code
res://test
res://test/unit
res://test/integration
You can run test through a scene or from the Command Line. The next instructions are for running with a scene.
- Create a scene that will use Gut to run your tests at
res://test/tests.tscn
- Add a Gut object the same way you would any other object.
- Click "Add/Create Node"
- type "Gut"
- press enter.
- Configure Gut to find your tests. Select it in the Scene Tree and set the following settings in the Inspector:
- In the
Directory1
setting enterres://test/unit
- In the
Directory2
setting enterres://test/integration
- In the
A full description of all GUT settings can be found here.
That's it. The next step is to make some tests.