Update README file structure
This commit is contained in:
parent
5f2f599a99
commit
3a65e7bac0
1 changed files with 10 additions and 7 deletions
17
README.md
17
README.md
|
@ -137,7 +137,7 @@ Here's a file structure for this project:
|
|||
│ │ │ ├── coreconfiguration.md
|
||||
│ │ │ ├── core.md
|
||||
│ │ │ ├── coretypes.md
|
||||
│ │ │ ├── edl.md
|
||||
│ │ │ ├── erm.md
|
||||
│ │ │ ├── loggerinstance.md
|
||||
│ │ │ ├── logger.md
|
||||
│ │ │ ├── misc.md
|
||||
|
@ -170,7 +170,7 @@ Here's a file structure for this project:
|
|||
│ │ ├── loggerinstance.gd
|
||||
│ │ └── types.gd
|
||||
│ ├── core.gd
|
||||
│ ├── edl.gd
|
||||
│ ├── erm.gd
|
||||
│ ├── logger.gd
|
||||
│ ├── logui.gd
|
||||
│ ├── misc.gd
|
||||
|
@ -178,11 +178,14 @@ Here's a file structure for this project:
|
|||
│ └── storage.gd
|
||||
├── Test.gd Test script, only for testing during development
|
||||
├── tests For unit testing
|
||||
│ ├── custom_module.gd A custom module used in tests/unit/core.gd
|
||||
│ ├── unit The actual unit tests that are executed by Bessere Tests
|
||||
│ │ ├── core.gd
|
||||
│ │ ├── misc.gd
|
||||
│ │ └── z_cleanup.gd Ensures all nodes are cleaned up, throws an error otherwise.
|
||||
│ ├── test_resources Scripts, scenes and other resources used in tests
|
||||
│ │ ├── custom_module.gd A custom module used in 'tests/unit/core.gd'
|
||||
│ │ ├── scene.gd Updates the callback value
|
||||
│ │ └── scene.tscn Loads 'scene.gd'
|
||||
│ ├── unit The actual unit tests
|
||||
│ │ ├── core.gd
|
||||
│ │ ├── misc.gd
|
||||
│ │ └── sms.gd
|
||||
│ └── unitbase.gd The base for all of our unit tests, includes functions and variables used in all unit tests.
|
||||
└── Test.tscn Simply executes `Test.gd`
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue