Add missing requires to tests

This commit is contained in:
Tim Schaub
2017-07-03 14:57:16 -06:00
parent 39cf0ee154
commit 46bcce464f
34 changed files with 141 additions and 102 deletions

View File

@@ -1,16 +1,17 @@
goog.provide('ol.test.format.GML');
goog.require('ol.Feature');
goog.require('ol.format.GML');
goog.require('ol.format.GML2');
goog.require('ol.geom.LineString');
goog.require('ol.geom.LinearRing');
goog.require('ol.geom.MultiPoint');
goog.require('ol.geom.MultiLineString');
goog.require('ol.geom.MultiPoint');
goog.require('ol.geom.MultiPolygon');
goog.require('ol.xml');
goog.require('ol.geom.Point');
goog.require('ol.geom.Polygon');
goog.require('ol.proj');
goog.require('ol.xml');
var readGeometry = function(format, text, opt_options) {
var doc = ol.xml.parse(text);