Skip to content

bennyhuo/kotlin-compile-testing-extensions

Repository files navigation

License: MIT Maven Central

kotlin-compile-testing-extensions

This is an extension of tschuchortdev/kotlin-compile-testing by adding module support.

If you want to test KAPT, KSP(Kotlin Symbol Processing) or KCP(Kotlin Compiler Plugin) on different modules, this library may help.

The original repository tschuchortdev/kotlin-compile-testing is not up to date, I have replaced it with ZacSweers/kotlin-compile-testing since 1.8.0.

How to use

Set up

I have deployed these modules to maven central, you may add this in your build.gradle:

repositories {
    mavenCentral()
}

dependencies {
    testImplementation("com.bennyhuo.kotlin:kotlin-compile-testing-extensions:<lastest-version>")
}

Examples

See the tests in kanyun-inc/Kace and kanyun-inc/Kudos.

ChangeLog

See Releases.

License

MIT License

Copyright (c) 2022 Bennyhuo

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.