[Build] Move utils for generation JUnit 5 tests to :generators module

This commit is contained in:
Dmitriy Novozhilov
2021-09-20 18:15:35 +03:00
committed by TeamCityServer
parent 48aa063b21
commit e56c87a17a
13 changed files with 31 additions and 31 deletions
@@ -0,0 +1,21 @@
/*
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.test.runners
import org.jetbrains.kotlin.test.TargetBackend
/**
* If your test runner has specific target backend then you can add this interface
* to your runner and after that you should not declare targetBackend
* parameter in DSL in addition to defining it in test runner
*
* Please make sure that all abstract runners which are used in test generator
* have `open` modality, not `abstract`. This is required because test generator
* instantiates runner to get value of targetBackend and generate tests properly
*/
interface RunnerWithTargetBackendForTestGeneratorMarker {
val targetBackend: TargetBackend
}