Skip to main content

Kotlin API reference

Placeholder

Dokka (Kotlin documentation generator) is not yet configured in the backend build. This page will be populated when the Dokka plugin is added to backend/platform/build.gradle.kts.

To enable:

  1. Add to build.gradle.kts: id("org.jetbrains.dokka") version "2.0.0"
  2. Run: ./gradlew dokkaHtml
  3. Output will be generated to this directory

Setup instructions

// backend/platform/build.gradle.kts
plugins {
id("org.jetbrains.dokka") version "2.0.0"
}

tasks.dokkaHtml {
outputDirectory.set(layout.buildDirectory.dir("dokka"))
}

Key packages

When generated, the reference will cover:

PackagePurpose
com.aucert.platform.domain.generationL1: Test generation
com.aucert.platform.domain.executionL2: Test execution
com.aucert.platform.domain.analysisL3: Result analysis
com.aucert.platform.domain.pipelinePipeline orchestration
com.aucert.platform.knowledgegraphKnowledge Graph engine
com.aucert.platform.persistenceDatabase access layer
com.aucert.platform.apiREST API routes