Line 8:
Line 8:
*Tests the HexTrie Bplus and Bstar for put and remove. Verifies the HexTrie has the correct keys/guides/values/children in each node.
*Tests the HexTrie Bplus and Bstar for put and remove. Verifies the HexTrie has the correct keys/guides/values/children in each node.
***[[Jesse_HexTrie_Junit_Test]]
***[[Jesse_HexTrie_Junit_Test]]
+
You need to add in this method to your HexTrie to get the tests to work:
+
<pre>
+
public Node<K,V> getRootNode(){
+
return root.me;
+
}
+
</pre>
== Chris Conroy's Test Files ==
== Chris Conroy's Test Files ==