/**
* test the "<CLUSTER>" tag data
* <CLUSTER NAME="" LOCALTIME="" OWNER="" LATLONG="" URL="">
*/
public void testClusterTag() {
Cluster cluster = gridConfiguration.get(0);
assertEquals("localcluster", cluster.getName());
assertEquals("1370187645", cluster.getLocaltime());
assertEquals("oodt", cluster.getOwner());
assertEquals("N32.87 W117.22", cluster.getLatLong());
assertEquals("http://www.mycluster.org/", cluster.getUrl());
}