Fastest

Project Repository Structure #

To enable proper code analysis and test case mapping, your project must meet the following conditions:

  • All test files must be located in a folder named test.

Example:

your_project/
├── src/
│   ├── module1/
│   └── module2/
└── test/
    ├── test_module1.cpp
    └── test_module2.cpp
  • Test cases must be written using the Google Test (GTest) framework for C++.
  • The project must be managed with GitHub, as FASTEST analyzes commit history to track changes and assess their impact on tests.