kompile-testing alternatives and similar libraries
Based on the "Tests" category.
Alternatively, view kompile-testing alternatives based on common mentions on social networks and blogs.
-
Kotest
Kotest is a flexible and comprehensive testing tool for Kotlin with multiplatform support. Previously known as Kotlintest - From release 4.0 this project is now known as Kotest -
balin
Balin is a browser automation library for Kotlin. It's basically a Selenium-WebDriver wrapper library inspired by Geb. -
SeleniumBuilder
DSL for Selenium 2.0. Provide a possibility to write tests in Kotlin builder style. -
arbitrater
Arbitrater is a library for creating arbitrary (randomized) instances of classes by reflection for use in testing. -
kwik
A property-based testing library for Kotlin. Execute tests with randomized inputs with a test-engine agnostic and compile-time safe library.
Get performance insights in less than 4 minutes
Do you think we are missing an alternative of kompile-testing or a related project?
Popular Comparisons
README
kompile-testing 
A library for testing kotlinc
compilation with kotlin annotation processors(kapt) which is strongly inspired by google/compile-testing.
kompile-testing gives you an easy way to assert not only annotation processors can handle incorrect inputs and prints the correct errors but also the generated Kotlin file is correctly formed.
NOTE: Current library's status is still in development especially due to performance issue. Use at your own risk:D
Installation
dependencies {
testImplementation "org.permissionsdispatcher:kompile-testing:{latestVersion}"
}
Usage
A simple example that tests compiling a source file succeeded and make assertions about generated file is:
kotlinc()
.withProcessors(YourProcessor())
.addKotlin("input.kt", """
import kompile.testing.TestAnnotation
@TestAnnotation
class TestClass
""".trimIndent())
.compile()
.succeededWithoutWarnings()
.generatedFile("generatedKtFile.kt")
.hasSourceEquivalentTo("""
class GeneratedKtFile
""".trimIndent())
You can also test that errors or warnings were reported.
The following tests compiling a source file with an annotation processor reported an error:
kotlinc()
.withProcessors(YourProcessor())
.addKotlin("input.kt", """
import kompile.testing.TestAnnotation
@TestAnnotation
class TestClass
""".trimIndent())
.compile()
.failed()
.withErrorContaining("Expected error message here.")
License
Copyright (C) 2019 permissions-dispatcher contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the kompile-testing README section above
are relevant to that project's source code only.