Update of /cvsroot/cweb/bigdata/src/test/com/bigdata/isolation
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv9284/src/test/com/bigdata/isolation
Modified Files:
TestValueSerializer.java TestIsolatedBTree.java
TestUnisolatedBTree.java
Log Message:
Package rename from com.bigdata.objndx to com.bigdata.btree. Since we are using CVS, this is going to break the access to prior versions in the source file history.
Index: TestUnisolatedBTree.java
===================================================================
RCS file: /cvsroot/cweb/bigdata/src/test/com/bigdata/isolation/TestUnisolatedBTree.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** TestUnisolatedBTree.java 27 Mar 2007 14:34:24 -0000 1.7
--- TestUnisolatedBTree.java 13 Apr 2007 15:04:23 -0000 1.8
***************
*** 50,58 ****
import java.util.UUID;
! import com.bigdata.objndx.AbstractBTree;
! import com.bigdata.objndx.AbstractBTreeTestCase;
! import com.bigdata.objndx.BTree;
! import com.bigdata.objndx.IBatchOp;
! import com.bigdata.objndx.IRangeQuery;
import com.bigdata.rawstore.IRawStore;
import com.bigdata.rawstore.SimpleMemoryRawStore;
--- 50,58 ----
import java.util.UUID;
! import com.bigdata.btree.AbstractBTree;
! import com.bigdata.btree.AbstractBTreeTestCase;
! import com.bigdata.btree.BTree;
! import com.bigdata.btree.IBatchOp;
! import com.bigdata.btree.IRangeQuery;
import com.bigdata.rawstore.IRawStore;
import com.bigdata.rawstore.SimpleMemoryRawStore;
***************
*** 371,375 ****
* @todo test the batch apis. all methods must work with {@link Value}s
* (the test for this could be a test of the
! * {@link IBatchOp#apply(com.bigdata.objndx.ISimpleBTree)}
* implementations in the btree package since we apply that method in
* a trivial manner to support the batch api.
--- 371,375 ----
* @todo test the batch apis. all methods must work with {@link Value}s
* (the test for this could be a test of the
! * {@link IBatchOp#apply(com.bigdata.btree.ISimpleBTree)}
* implementations in the btree package since we apply that method in
* a trivial manner to support the batch api.
Index: TestIsolatedBTree.java
===================================================================
RCS file: /cvsroot/cweb/bigdata/src/test/com/bigdata/isolation/TestIsolatedBTree.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** TestIsolatedBTree.java 27 Mar 2007 14:34:24 -0000 1.6
--- TestIsolatedBTree.java 13 Apr 2007 15:04:23 -0000 1.7
***************
*** 50,57 ****
import java.util.UUID;
import com.bigdata.journal.TestTx;
- import com.bigdata.objndx.AbstractBTreeTestCase;
- import com.bigdata.objndx.BTreeMetadata;
- import com.bigdata.objndx.IBatchOp;
import com.bigdata.rawstore.IRawStore;
import com.bigdata.rawstore.SimpleMemoryRawStore;
--- 50,57 ----
import java.util.UUID;
+ import com.bigdata.btree.AbstractBTreeTestCase;
+ import com.bigdata.btree.BTreeMetadata;
+ import com.bigdata.btree.IBatchOp;
import com.bigdata.journal.TestTx;
import com.bigdata.rawstore.IRawStore;
import com.bigdata.rawstore.SimpleMemoryRawStore;
***************
*** 75,79 ****
* @todo test the batch apis. all methods must work with {@link Value}s (the
* test for this could be a test of the
! * {@link IBatchOp#apply(com.bigdata.objndx.ISimpleBTree)} implementations
* in the btree package since we apply that method in a trivial manner to
* support the batch api.
--- 75,79 ----
* @todo test the batch apis. all methods must work with {@link Value}s (the
* test for this could be a test of the
! * {@link IBatchOp#apply(com.bigdata.btree.ISimpleBTree)} implementations
* in the btree package since we apply that method in a trivial manner to
* support the batch api.
Index: TestValueSerializer.java
===================================================================
RCS file: /cvsroot/cweb/bigdata/src/test/com/bigdata/isolation/TestValueSerializer.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestValueSerializer.java 12 Apr 2007 23:59:35 -0000 1.3
--- TestValueSerializer.java 13 Apr 2007 15:04:23 -0000 1.4
***************
*** 56,60 ****
import junit.framework.TestCase2;
! import com.bigdata.objndx.DataOutputBuffer;
/**
--- 56,60 ----
import junit.framework.TestCase2;
! import com.bigdata.btree.DataOutputBuffer;
/**
|