Add basic test for ol.binary.Buffer

This commit is contained in:
Marc Jansen
2015-04-07 22:55:10 +02:00
parent 5dfa9e0a67
commit a26f2a78eb

View File

@@ -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');