Github user animeshtrivedi commented on a diff in the pull request: https://github.com/apache/incubator-crail/pull/16#discussion_r180320774 --- Diff: storage-nvmf/src/test/java/org/apache/crail/storage/nvmf/client/NvmfStagingBufferCacheTest.java --- @@ -0,0 +1,73 @@ +package org.apache.crail.storage.nvmf.client; + +import org.apache.crail.CrailBuffer; +import org.apache.crail.CrailBufferCache; +import org.apache.crail.conf.CrailConfiguration; +import org.apache.crail.conf.CrailConstants; +import org.apache.crail.memory.MappedBufferCache; +import org.junit.Assert; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +import java.io.IOException; +import java.util.HashSet; +import java.util.Set; + +import static org.junit.Assert.*; + +public class NvmfStagingBufferCacheTest { --- End diff -- :+1:
---