diff --git a/test/spec/ol/binary.test.js b/test/spec/ol/binary.test.js new file mode 100644 index 0000000000..5b7706f30a --- /dev/null +++ b/test/spec/ol/binary.test.js @@ -0,0 +1,16 @@ +goog.provide('ol.test.buffer'); + +describe('ol.binary.Buffer', function() { + + describe('constructor', function() { + + it('can be constructed without arguments', function() { + var instance = new ol.binary.Buffer(); + expect(instance).to.be.an(ol.binary.Buffer); + }); + + }); + +}); + +goog.require('ol.binary.Buffer');