//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"));