left should be 00ms ‣
assert.equal(0, child.left);
width should be 2000ms ‣
assert.equal(width, child.width);
right should be 2000ms ‣
assert.equal(width, child.right);
centerX should be 1001ms ‣
assert.equal(child.left + (child.width / 2), child.centerX);
assert.equal(width / 2, child.centerX);
top should be 00ms ‣
assert.equal(0, child.top);
height should be 1000ms ‣
assert.equal(height, child.height);
bottom should be 1000ms ‣
assert.equal(child.top + child.height, child.bottom);
assert.equal(height, child.bottom);
centerY should be 501ms ‣
assert.equal(child.top + (child.height / 2), child.centerY);
assert.equal(height / 2, child.centerY);