Add missing requires to specs

This commit is contained in:
Tom Payne
2013-03-04 20:02:55 +01:00
parent e776371f54
commit df5f74b3c0
13 changed files with 21 additions and 1 deletions

View File

@@ -71,3 +71,5 @@ describe('ol.Color', function() {
}); });
}); });
goog.require('ol.Color');

View File

@@ -388,4 +388,5 @@ describe('ol.Ellipsoid', function() {
goog.require('ol.Coordinate'); goog.require('ol.Coordinate');
goog.require('ol.Ellipsoid');
goog.require('ol.ellipsoid.WGS84'); goog.require('ol.ellipsoid.WGS84');

View File

@@ -100,5 +100,6 @@ describe('ol.Extent', function() {
}); });
}); });
goog.require('ol.Coordinate');
goog.require('ol.Extent'); goog.require('ol.Extent');
goog.require('ol.projection'); goog.require('ol.projection');

View File

@@ -276,4 +276,6 @@ describe('ol.layer.Layer', function() {
}); });
goog.require('ol.layer.Layer');
goog.require('ol.projection'); goog.require('ol.projection');
goog.require('ol.source.Source');

View File

@@ -187,3 +187,5 @@ describe('ol.structs.LRUCache', function() {
}); });
}); });
goog.require('ol.structs.LRUCache');

View File

@@ -246,6 +246,9 @@ goog.require('ol.Collection');
goog.require('ol.Coordinate'); goog.require('ol.Coordinate');
goog.require('ol.Map'); goog.require('ol.Map');
goog.require('ol.RendererHint'); goog.require('ol.RendererHint');
goog.require('ol.RendererHints');
goog.require('ol.View2D'); goog.require('ol.View2D');
goog.require('ol.interaction.DblClickZoom');
goog.require('ol.interaction.MouseWheelZoom');
goog.require('ol.layer.TileLayer'); goog.require('ol.layer.TileLayer');
goog.require('ol.source.XYZ'); goog.require('ol.source.XYZ');

View File

@@ -178,4 +178,5 @@ describe('ol.parser.ogc.wmtscapabilities_v1_0_0', function() {
}); });
goog.require('goog.net.XhrIo'); goog.require('goog.net.XhrIo');
goog.require('ol.Extent');
goog.require('ol.parser.ogc.WMTSCapabilities'); goog.require('ol.parser.ogc.WMTSCapabilities');

View File

@@ -46,4 +46,5 @@ describe('ol.projection.EPSG3857', function() {
goog.require('ol.Coordinate'); goog.require('ol.Coordinate');
goog.require('ol.projection');
goog.require('ol.projection.EPSG3857'); goog.require('ol.projection.EPSG3857');

View File

@@ -78,6 +78,7 @@ describe('ol.renderer.webgl.ImageLayer', function() {
goog.require('goog.vec.Mat4'); goog.require('goog.vec.Mat4');
goog.require('goog.vec.Vec4'); goog.require('goog.vec.Vec4');
goog.require('ol.Coordinate');
goog.require('ol.Extent'); goog.require('ol.Extent');
goog.require('ol.Image'); goog.require('ol.Image');
goog.require('ol.Map'); goog.require('ol.Map');

View File

@@ -227,12 +227,13 @@ describe('ol.test.source.MockTileSource', function() {
}); });
goog.require('goog.object'); goog.require('goog.object');
goog.require('ol.Coordinate'); goog.require('ol.Coordinate');
goog.require('ol.Extent'); goog.require('ol.Extent');
goog.require('ol.Size');
goog.require('ol.Tile'); goog.require('ol.Tile');
goog.require('ol.TileCoord'); goog.require('ol.TileCoord');
goog.require('ol.TileState'); goog.require('ol.TileState');
goog.require('ol.projection'); goog.require('ol.projection');
goog.require('ol.source.Source');
goog.require('ol.source.TileSource'); goog.require('ol.source.TileSource');
goog.require('ol.tilegrid.TileGrid'); goog.require('ol.tilegrid.TileGrid');

View File

@@ -130,4 +130,5 @@ describe('ol.source.XYZ', function() {
goog.require('ol.Coordinate'); goog.require('ol.Coordinate');
goog.require('ol.TileCoord'); goog.require('ol.TileCoord');
goog.require('ol.TileUrlFunction'); goog.require('ol.TileUrlFunction');
goog.require('ol.tilegrid.XYZ');
goog.require('ol.source.XYZ'); goog.require('ol.source.XYZ');

View File

@@ -68,3 +68,6 @@ describe('ol.TileQueue', function() {
}); });
}); });
goog.require('ol.Coordinate');
goog.require('ol.Tile');
goog.require('ol.TileQueue');

View File

@@ -131,4 +131,5 @@ describe('ol.TileRange', function() {
}); });
goog.require('ol.TileCoord');
goog.require('ol.TileRange'); goog.require('ol.TileRange');