Re: Integration Testing for Cassandra

2012-06-04 Thread David McNelis
That article is a good starting point. To make your life a bit easier, consider checking out CassandraUnit that provides facilities to load example data in a variety of ways. https://github.com/jsevellec/cassandra-unit Then you just need to be able to pass in which cassandra instance to connect

Integration Testing for Cassandra

2012-06-03 Thread Eran Chinthaka Withana
Hi, I want to write integration tests related to my cassandra code where instead of accessing production clusters I should be able to start an embedded cassandra instance, within my unit test code, populate some data and run test cases. I found this[1] as the closest to what I'm looking for (I p