1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-10 01:50:53 +09:00
Satori/docs/libraries/project-docs/repo-organization.md
Zlatko Knezevic 3f2ac8ff38 Add folders to CoreFX Documentation
Align to the way CoreCLR is handling its Documentation folder in the
repo. Add folders. Changed README.md in root, Documentation as well as
CONTRIBUTING.md with new links.


Commit migrated from 06a5ba78cf
2015-06-23 16:48:06 -07:00

643 B

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