mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
314 B
Kotlin
15 lines
314 B
Kotlin
package com.intellij.configurationScript
|
|
|
|
import org.junit.runner.RunWith
|
|
import org.junit.runners.Suite
|
|
|
|
@RunWith(Suite::class)
|
|
@Suite.SuiteClasses(
|
|
ConfigurationFileTest::class,
|
|
ComponentStateTest::class,
|
|
ConfigurationSchemaTest::class,
|
|
PropertyValueReaderTest::class
|
|
)
|
|
class ConfigurationFileTestSuite
|
|
|