org.cassandraunit.spring.CassandraUnit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-unit-spring Show documentation
Show all versions of cassandra-unit-spring Show documentation
Spring Test framework to develop with Cassandra
The newest version!
package org.cassandraunit.spring;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* A composition of @CassandraDataSet and @EmbeddedCassandra with default settings.
*
* @author Olivier Bazoud
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
@Documented
@CassandraDataSet
@EmbeddedCassandra
public @interface CassandraUnit {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy