void FixtureTests::getExtentsTest()
{
    QFETCH(QList<QPoint>, locations);
    QFETCH(QRect, extents);

    Fixture fixture;
    fixture.setLocations(locations);

    QCOMPARE(fixture.getExtents(), extents);

}