Follow established naming patterns and conventions throughout the codebase to ensure consistency and clarity. This includes: 1. Use existing naming patterns for similar concepts:
Follow established naming patterns and conventions throughout the codebase to ensure consistency and clarity. This includes:
// Avoid unclear or ambiguous names
enum SameSite {
UNSET("Unset") // Makes readers stop and think
}
// Use clear, descriptive names
enum SameSite {
OMITTED("Omitted") // Clearly describes the behavior
}
// Avoid vague names
@Test
void customizer() { }
// Use descriptive names that explain the test
@Test
void whenCustomizerBeanIsDefinedThenItIsConfiguredOnSpringLiquibase() { }
Enter the URL of a public GitHub repository