Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

kotlin-tdd科特林 TDD

Agent Skill

kotlin-tdd 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

549

周安装

22

GitHub Stars

13

下载量

178
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:kotlin-tdd(科特林 TDD)
来源仓库:https://github.com/anderssv/the-example
仓库路径:skills/kotlin-tdd
安装命令:
npx skills add https://github.com/anderssv/the-example --skill kotlin-tdd
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/anderssv/the-example --skill kotlin-tdd

简介

kotlin-tdd 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 可用于支持技术调研、文档查找或问题排查任务。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网操作。
  • 可结合原始 README 进一步核验具体功能和使用限制。

SKILL.md

STARTER_CHARACTER = 🧪

Kotlin TDD approach built on three pillars: Test Setup, Fakes, and Testing Through The Domain (TTTD).

Test qualities to aim for

  • Predictable (not flaky)
  • Readable
  • Easy to write
  • Maintainable (resistant to irrelevant changes)
  • Fast (all in-memory)

Three pillars

1. Test Setup

Extension functions on companion objects create test data with sensible defaults.

// In test source: TestExtensions.kt
fun Customer.Companion.valid() = Customer(
    id = UUID.randomUUID(),
    name = "Test Customer",
    active = true,
)

fun Application.Companion.valid(
    customerId: UUID,
    monthsOld: Long = 0,  // Helper for complex setup
) = Application(
    id = UUID.randomUUID(),
    customerId = customerId,
    name = "Tester One",
    birthDate = LocalDate.of(1978, 2, 23),
    applicationDate = LocalDate.now().minusMonths(monthsOld),
    status = ApplicationStatus.ACTIVE,
)

Use .copy() for simple variations:

val deniedApp = Application.valid(customer.id).copy(status = ApplicationStatus.DENIED)

Use helper parameters for complex variations that would be verbose with .copy().

For detailed patterns, see test-setup.md.

2. Fakes

HashMap-based implementations that replace real dependencies. No mocking frameworks needed.

class ApplicationRepositoryFake : ApplicationRepository {
    private val db = mutableMapOf<UUID, Application>()

    override fun addApplication(application: Application) {
        db[application.id] = application
    }

    override fun getApplication(applicationId: UUID): Application = db[applicationId]!!

    override fun getApplicationsForName(name: String): List<Application> =
        db.values.filter { it.name == name }
}

For verification and error testing patterns, see fakes.md.

3. Testing Through The Domain (TTTD)

Set up test state using domain operations, not direct data manipulation.

// Data-oriented (brittle)
repositories.applicationRepo.addApplication(application)
applicationService.approveApplication(application.id)

// Domain-oriented (resilient)
applicationService.registerInitialApplication(customer, application)
applicationService.approveApplication(application.id)

The domain-oriented version survives changes to domain logic. When registerInitialApplication adds customer validation, tests using the domain approach keep working.

For detailed explanation, see tttd.md.

SystemTestContext pattern

Central test context with fakes injected:

class SystemTestContext : SystemContext() {
    class Repositories : SystemContext.Repositories() {
        override val applicationRepo = ApplicationRepositoryFake()
        override val customerRepository = CustomerRepositoryFake()
    }

    class Clients : SystemContext.Clients() {
        override val userNotificationClient = UserNotificationClientFake()
    }

    override val repositories = Repositories()
    override val clients = Clients()
    override val clock = TestClock.now()
}

Usage in tests:

class ApplicationTest {
    private val testContext = SystemTestContext()

    @Test
    fun shouldApproveApplication() {
        with(testContext) {
            val customer = Customer.valid()
            val application = Application.valid(customer.id)

            applicationService.registerInitialApplication(customer, application)
            applicationService.approveApplication(application.id)

            assertThat(repositories.applicationRepo.getApplication(application.id).status)
                .isEqualTo(ApplicationStatus.APPROVED)
        }
    }
}

TestClock for time control

class TestClock private constructor(private var dateTime: ZonedDateTime) : Clock() {
    companion object {
        fun at(dateTime: ZonedDateTime): TestClock = TestClock(dateTime)
        fun now(): TestClock = at(ZonedDateTime.now())
    }

    override fun instant(): Instant = dateTime.toInstant()
    override fun withZone(zone: ZoneId?): Clock = TestClock(dateTime.withZoneSameInstant(zone ?: ZoneId.systemDefault()))
    override fun getZone(): ZoneId = dateTime.zone

    fun advance(duration: Duration) { dateTime = dateTime.plus(duration) }
    fun setTo(newDateTime: ZonedDateTime) { dateTime = newDateTime }
    fun setTo(localDate: LocalDate) { dateTime = localDate.atStartOfDay(dateTime.zone) }
}

Usage:

@Test
fun shouldExpireOldApplications() {
    with(testContext) {
        clock.setTo(LocalDate.of(2022, 1, 1))
        val customer = Customer.valid()
        val application = Application.valid(customer.id)
        applicationService.registerInitialApplication(customer, application)

        clock.advance(Duration.ofDays(7 * 30))  // 7 months later
        applicationService.expireApplications()

        assertThat(applicationService.activeApplicationFor(application.name))
            .doesNotContain(application)
    }
}

Test types

  • Domain tests (no fakes): Pure business logic, no I/O
  • IO tests (no fakes): HTTP calls, SQL queries - verify adapter correctness
  • Variation tests (with fakes): Edge cases, specific variations
  • Outcome tests (with fakes): Interactions between components, end-to-end flows

When to use real implementations vs fakes

Use real database/HTTP tests when:

  • Testing JSONB/JSON serialization behavior
  • Verifying SQL query correctness (joins, indexes, edge cases)
  • Testing database-specific features (constraints, triggers, transactions)
  • Validating migration scripts work correctly
  • Testing HTTP client response parsing and error handling

Use fakes when:

  • Testing business logic and domain rules
  • Testing component interactions
  • Most outcome/variation tests
  • Speed matters (fakes are in-memory, real DBs are slow)

Test tagging

Use JUnit tags to run test subsets:

@Tag("unit")
class DomainLogicTest { ... }

@Tag("integration")
class DatabaseRepositoryTest { ... }

@Tag("database")
class JsonbSerializationTest { ... }

@Tag("e2e")
class FullFlowTest { ... }

Run specific tags:

./gradlew test -Dinclude.tags=unit
./gradlew test -Dexclude.tags=e2e

Parallel-safe assertions

Whether using shared databases or shared fake instances, always set up unique data and assert on that specific data. Never assert on absolute counts or global state:

// BAD - fails when other tests create data concurrently
assertThat(repository.getAllPolls()).hasSize(1)
assertThat(repository.count()).isEqualTo(5)

// GOOD - verify specific data you created using its ID
val poll = repository.findPollById(myPollId)
assertThat(poll).isNotNull
assertThat(poll.title).isEqualTo("My Poll")

// GOOD - filter to your specific test data
assertThat(repository.getAllPolls())
    .anyMatch { it.id == myPollId }

Key principles:

  • Each test creates its own data with unique IDs (UUIDs)
  • Query by the specific ID you created, not by position or count
  • Use anyMatch/contains instead of hasSize when checking lists
  • Fakes should be per-test-instance, not shared across tests

Anti-patterns

  • Using mocks when fakes would work (fakes are reusable, mocks are not)
  • Setting up test data directly in repositories instead of through domain operations
  • Verifying method calls instead of system state
  • Creating new test data factories for each test file (centralize in TestExtensions.kt)
  • Testing DTOs at interface boundaries (interfaces should use domain objects)

When mocks are appropriate

Mocks are rarely needed but are the right choice for testing HTTP protocol behavior (status codes, timeouts, retries, headers). For everything else, prefer fakes. See fakes.md for detailed comparison and examples.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.32%
按下载量换算63

Claude

27.35%
按下载量换算49

Cursor

20.22%
按下载量换算36

Gemini CLI

8.29%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills