@Test
public void testRangeContains(){
//Create the test object
Range testRange = new Range();
// add some test cells
Cell testCellOne = new Cell();
testCellOne.setValue("cellValue1");
Cell testCellTwo = new Cell();
testCellTwo.setValue("cellValue2");
testRange.put("name1",testCellOne);
testRange.put("name2",testCellTwo);
assertTrue(testRange.getRangeContainsValue("cellValue1"));
assertFalse(testRange.getRangeContainsValue("cellValue3")); // we don't add this , should not exist
}