From a26f2a78eb4aeee062bc8bcdc955ba781a4020ec Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Tue, 7 Apr 2015 22:55:10 +0200 Subject: [PATCH] Add basic test for ol.binary.Buffer --- test/spec/ol/binary.test.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/spec/ol/binary.test.js 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');