From 600d5ade8311c4712ed8bb8c09c51c5be717b752 Mon Sep 17 00:00:00 2001 From: Deniz Altunkapan Date: Mon, 29 Dec 2025 16:15:55 +0100 Subject: [PATCH 1/2] Add checklist item for test class inclusion --- .github/pull_request_template.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index d9cc4c3c35c5..7a9b5b224a24 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,4 +13,5 @@ In order to reduce the number of notifications sent to the maintainers, please: - [ ] All filenames are in PascalCase. - [ ] All functions and variable names follow Java naming conventions. - [ ] All new algorithms have a URL in their comments that points to Wikipedia or other similar explanations. -- [ ] All new code is formatted with `clang-format -i --style=file path/to/your/file.java` \ No newline at end of file +- [ ] All new classes include a corresponding test class that validates their functionality. +- [ ] All new code is formatted with `clang-format -i --style=file path/to/your/file.java` From 1968ee209296a94628b348949d2627bc5c4c7dfc Mon Sep 17 00:00:00 2001 From: Deniz Altunkapan Date: Mon, 29 Dec 2025 16:17:25 +0100 Subject: [PATCH 2/2] Update pull request template for algorithm tests --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 7a9b5b224a24..30b46bbf45b5 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,5 +13,5 @@ In order to reduce the number of notifications sent to the maintainers, please: - [ ] All filenames are in PascalCase. - [ ] All functions and variable names follow Java naming conventions. - [ ] All new algorithms have a URL in their comments that points to Wikipedia or other similar explanations. -- [ ] All new classes include a corresponding test class that validates their functionality. +- [ ] All new algorithms include a corresponding test class that validates their functionality. - [ ] All new code is formatted with `clang-format -i --style=file path/to/your/file.java`