Add basic test for ol.layer.Heatmap

This commit is contained in:
Marc Jansen
2015-04-09 08:52:08 +02:00
parent e283d6f54a
commit 33788ddfd9

View File

@@ -0,0 +1,16 @@
goog.provide('ol.test.layer.Heatmap');
describe('ol.layer.Heatmap', function() {
describe('constructor', function() {
it('can be constructed without arguments', function() {
var instance = new ol.layer.Heatmap();
expect(instance).to.be.an(ol.layer.Heatmap);
});
});
});
goog.require('ol.layer.Heatmap');