From 3978925528cc1f13040bfa3476fa8c30b74b0872 Mon Sep 17 00:00:00 2001 From: Krishna Madhur Oruganti Date: Sat, 16 May 2026 13:16:53 -0400 Subject: [PATCH] docs(claude): add required prefix, base package, and single-test commands Co-Authored-By: Claude Sonnet 4.6 --- CLAUDE.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 8ef5c13..ae219d2 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,7 +1,17 @@ # CLAUDE.md +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + @.github/copilot-instructions.md ## Claude Code - Run `/pre-commit` to execute the full pre-commit checklist for this project. +- Base package: `ar.com.nanotaboada.java.samples.spring.boot` — all source lives under this path. + +### Running a single test + +```bash +./mvnw test -Dtest=PlayersControllerTests # one test class +./mvnw test -Dtest=PlayersServiceTests#givenX_whenY_thenZ # one test method +```