Put rendering test requires on top

This commit is contained in:
Tim Schaub
2016-08-07 23:22:12 -06:00
parent dd2e9c9ac9
commit 7d29b35e75
13 changed files with 128 additions and 115 deletions

View File

@@ -1,5 +1,16 @@
goog.provide('ol.test.rendering.style.Polygon');
goog.require('ol.Feature');
goog.require('ol.geom.Polygon');
goog.require('ol.Map');
goog.require('ol.View');
goog.require('ol.layer.Vector');
goog.require('ol.source.Vector');
goog.require('ol.style.Fill');
goog.require('ol.style.Style');
goog.require('ol.style.Stroke');
describe('ol.rendering.style.Polygon', function() {
var target, map, vectorSource;
@@ -187,13 +198,3 @@ describe('ol.rendering.style.Polygon', function() {
});
});
});
goog.require('ol.Feature');
goog.require('ol.geom.Polygon');
goog.require('ol.Map');
goog.require('ol.View');
goog.require('ol.layer.Vector');
goog.require('ol.source.Vector');
goog.require('ol.style.Fill');
goog.require('ol.style.Style');
goog.require('ol.style.Stroke');