Parameterized AO test - is it possible?

Hi all!

I am trying to write Parameterized tests for AO.
Like basic manual, I took this.

My test class looks like:

@Jdbc
@Data(TestDatabaseUpdater.class)
@RunWith(ActiveObjectsJUnitRunner.class)
public class MyClassAOTest {}

From the manual I know I need to use runner:

@RunWith(Parameterized.class)

And the problem is that @RunWith cant take two params like this:

@RunWith({ActiveObjectsJUnitRunner.class, Parameterized.class})

and cant duplicates in the test class like this:

@RunWith(ActiveObjectsJUnitRunner.class)
@RunWith(Parameterized.class)

Therefore, I realized that it is impossible to write parameterized tests for AO. Or am I mistaken and is there another way?