diff --git a/test/spec/ol/format/binaryfeatureformat.test.js b/test/spec/ol/format/binaryfeatureformat.test.js new file mode 100644 index 0000000000..4201e1609e --- /dev/null +++ b/test/spec/ol/format/binaryfeatureformat.test.js @@ -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');