From 05f3f6852d27de3ea3769d0d2a869ab26aaaf32f Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Tue, 7 Apr 2015 23:03:25 +0200 Subject: [PATCH] Add basic test for ol.format.BinaryFeature --- test/spec/ol/format/binaryfeatureformat.test.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/spec/ol/format/binaryfeatureformat.test.js 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');