test

Run CTest unit tests for the OrderParserProcessor project.

2|Updated May 17, 2025
One-click install
npx skills add https://github.com/AlexandrePrevot/OrderParserProcessor --skill test-alexandreprevot
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/AlexandrePrevot/OrderParserProcessor/tree/main/.claude/skills/test
Command: npx skills add https://github.com/AlexandrePrevot/OrderParserProcessor --skill test-alexandreprevot

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables quick execution of unit tests for the OrderParserProcessor project, helping you verify code quality and identify failures early.

Core Features & Use Cases

  • Run all tests: Execute the complete test suite via CTest.
  • Run specific tests: Target tests by pattern using -R.
  • List available tests: Discover tests with -N.
  • Rerun failed tests: Re-run only previously failed tests with --rerun-failed.

Quick Start

After building with tests enabled, locate the build directory and run ct­est with your preferred options, for example:

  • ctest --test-dir <build_dir> -R backend --output-on-failure
  • ctest --test-dir <build_dir> --rerun-failed --output-on-failure