* Has <b> OK </b> status if new range exists in collection
* and no exceptions were thrown. <p>
*/
public void _addNewByName() {
boolean bResult = true;
CellAddress aPosition = new CellAddress((short)0, 2, 2);
int nType = getRandomType();
String sContent = getRandomContent("D3;A6:B9;=F12");
name += sContent;
log.println("Adding new range with name=\"" + name +
"\", sContent = \"" + sContent +
"\", aPosition = (" + aPosition.Sheet + ", "
+ aPosition.Column + ", "
+ aPosition.Row +
"), Type = " + nType + ".");
oObj.addNewByName(name, sContent, aPosition, nType);
//inserted for a bug
CellAddress listOutputPosition = new CellAddress((short)0, 1, 1);
oObj.outputList(listOutputPosition);
String s = null;
String s1 = null;
try {
s = oSheet.getCellByPosition(1, 1).getFormula();