1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 18:11:04 +09:00
Satori/docs/project/repo-organization.md
Viktor Hofer a71a3249a9
Consolidate docs (#251)
* Consolidate sub-repo docs
2019-11-25 23:52:43 +01:00

32 lines
643 B
Markdown

Repo Organization
=================
Tests for a project are kept under the `tests` folder, which is a peer of the `src` folder. If you need to have multiple test projects for a component, structure them in sub folders.
For example, lay things out like this:
```
tests\
test_project_1\
test_1.cs
test_2.cs
test_project_1.csproj
test_project_2\
test_1.cs
test_2.cs
test_project_2.csproj
```
Not like this:
```
tests\
test_project_1.csproj
test_project_2.csproj
test_folder_1\
test_1.cs
test_2.cs
test_folder_2\
test_1.cs
test_2.cs
```