スキル一覧に戻る
JongminChung

junit-core

by JongminChung

Systematic notes and summaries from my computer engineering studies.

2🍴 0📅 2026年1月21日
GitHubで見るManusで実行

SKILL.md


name: junit-core description: JUnit 5 core testing patterns with AAA structure, test organization, and coverage standards allowed-tools: [Read, Grep, Glob]

JUnit Core Skill

REFERENCE MODE: This skill provides reference material. Load specific standards on-demand based on current task.

JUnit 5 testing standards for general Java projects. This skill covers test structure, naming conventions, coverage requirements, and the AAA (Arrange-Act-Assert) pattern.

Prerequisites

This skill applies to Java projects using JUnit 5:

  • org.junit.jupiter:junit-jupiter (JUnit 5)

Workflow

Step 1: Load Core Testing Standards

CRITICAL: Load this standard for any testing work.

Read: standards/testing-junit-core.md

This provides foundational rules for:

  • Test class requirements (1:1 mapping with production classes)
  • AAA pattern (Arrange-Act-Assert)
  • Coverage requirements (80% line/branch minimum)
  • @DisplayName usage

Step 2: Load Coverage Analysis (As Needed)

Coverage Analysis (load for coverage work):

Read: standards/coverage-analysis-pattern.md

Use when: Analyzing test coverage or improving coverage metrics.

Key Rules Summary

Test Class Requirements

// CORRECT - One test class per production class
// TokenValidator.java → TokenValidatorTest.java
// UserService.java → UserServiceTest.java

AAA Pattern (Arrange-Act-Assert)

@Test
@DisplayName("Should validate token with correct issuer")
void shouldValidateTokenWithCorrectIssuer() {
    // Arrange
    String issuer = "https://example.com";
    Token token = createTokenWithIssuer(issuer);

    // Act
    ValidationResult result = validator.validate(token);

    // Assert
    assertTrue(result.isValid());
    assertEquals(issuer, result.getIssuer());
}

DisplayName Annotations

// CORRECT - Descriptive test names
@Test
@DisplayName("Should throw exception when token is null")
void shouldThrowExceptionWhenTokenIsNull() { }

@Test
@DisplayName("Should return empty when no users found")
void shouldReturnEmptyWhenNoUsersFound() { }

Coverage Requirements

  • Minimum 80% line coverage
  • Minimum 80% branch coverage
  • Critical paths: 100% coverage
  • All public APIs must be tested
  • pm-dev-java:junit-integration - Maven integration testing
  • pm-dev-java-cui:cui-testing - CUI test generator framework
  • pm-dev-java:java-core - Core Java patterns

Standards Reference

StandardPurpose
testing-junit-core.mdTest structure, AAA pattern, naming
coverage-analysis-pattern.mdCoverage analysis and improvement

スコア

総合スコア

65/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です