Add basic test for ol.format.BinaryFeature

This commit is contained in:
Marc Jansen
2015-04-07 23:03:25 +02:00
parent 248d3071a3
commit 05f3f6852d

View File

@@ -0,0 +1,16 @@
goog.provide('ol.test.format.BinaryFeature');
describe('ol.format.BinaryFeature', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ol.format.BinaryFeature();
expect(instance).to.be.an(ol.format.BinaryFeature);
});
});
});
goog.require('ol.format.BinaryFeature');