如果我用来自com.datastax.driver.mapping.annotations的注解来注释一个类,我可以像下面这样写一个测试:但是,我有用org.springframework.data.cassandra.mapping注解的实体类。如何编写关于从Spring Data Cassandra注释的实体类生成的CQL的测试(理想情况下在运行时是轻量级的)
我已经为我的Android应用程序创建了一个Room数据库。My FooDao和BarDao都实现了BaseDao: interface BaseDao<T> { fun insert(obj: T): Long fun update(obj: T)interface FooDao: BaseDao<FooEntity> { fun doSomethingWithFoo()interface Ba