classes

abstract fun classes(): Array<Class<out Any>>

The component classes to use for loading an ApplicationContext. Can also be specified using @ContextConfiguration(classes=...). If no explicit classes are defined the test will look for nested @Configuration classes, before falling back to a @SpringBootConfiguration search.

Return

the component classes used to load the application context

See also