Add basic test for ol.control.FullScreen

This commit is contained in:
Marc Jansen
2015-04-07 22:55:54 +02:00
parent a26f2a78eb
commit 29124a3dad

View File

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