單元測試 NoSQLUnit 0.4.1 發布,增加 Redis 的支持
NoSQLUnit 是一個 JUnit 的擴展,用來為那些使用了 NoSQL 后端的應用提供單元測試和集成測試的工具。
NoSQLUnit 0.4.1 發布,該版本最主要是增加對 Redis 的測試支持。測試示例代碼請看 WhenYouFindABook.java
import static com.lordofthejars.nosqlunit.redis.RedisRule.RedisRuleBuilder.newRedisRule; import static com.lordofthejars.nosqlunit.redis.ManagedRedis.ManagedRedisRuleBuilder.newManagedRedisRule; import static org.junit.Assert.assertThat; import static org.hamcrest.CoreMatchers.is; import org.junit.ClassRule; import org.junit.Rule; import org.junit.Test; import redis.clients.jedis.Jedis; import com.lordofthejars.nosqlunit.annotation.UsingDataSet; import com.lordofthejars.nosqlunit.core.LoadStrategyEnum; import com.lordofthejars.nosqlunit.demo.model.Book; import com.lordofthejars.nosqlunit.redis.ManagedRedis; import com.lordofthejars.nosqlunit.redis.RedisRule; public class WhenYouFindABook { static { System.setProperty("REDIS_HOME", "/opt/redis-2.4.16"); } @ClassRule public static ManagedRedis managedRedis = newManagedRedisRule().build(); @Rule public RedisRule redisRule = newRedisRule().defaultManagedRedis(); @Test @UsingDataSet(locations="book.json", loadStrategy=LoadStrategyEnum.CLEAN_INSERT) public void book_should_be_returned_if_title_is_in_database() { BookManager bookManager = new BookManager(new Jedis("localhost")); Book findBook = bookManager.findBookByTitle("The Hobbit"); assertThat(findBook, is(new Book("The Hobbit", 293))); } }
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!