DATACASS-107 - fixed broken tests, abstracted UserRepositoryIntegrationTestsDelegator, added TODO class for derived query method tests

This commit is contained in:
Matthew Adams
2014-03-05 12:41:20 -06:00
parent 6c8b441fdd
commit 633eb08ad8
3 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
package org.springframework.data.cassandra.test.integration.querymethods.derived;
// TODO
public class TODO {
}

View File

@@ -29,7 +29,8 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
* @author Matthew T. Adams
*/
@RunWith(SpringJUnit4ClassRunner.class)
public class UserRepositoryIntegrationTestsDelegator extends AbstractSpringDataEmbeddedCassandraIntegrationTest {
public abstract class UserRepositoryIntegrationTestsDelegator extends
AbstractSpringDataEmbeddedCassandraIntegrationTest {
@Autowired
protected UserRepository repository;

View File

@@ -16,7 +16,7 @@
entity-base-packages="org.springframework.data.cassandra.test.integration.repository">
<cass:entity
class="org.springframework.data.cassandra.test.integration.repository.User">
<cass:table name="users_x" />
<cass:table name="users" />
</cass:entity>
</cass:mapping>