-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix geo tests & minor bugs found while testing
- Loading branch information
Showing
14 changed files
with
165 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
define([ | ||
"../../../../../../../../src/js/collections/maps/GeoPoints", | ||
], function (GeoPoints) { | ||
// Configure the Chai assertion library | ||
var should = chai.should(); | ||
var expect = chai.expect; | ||
|
||
describe("GeoPoints Test Suite", function () { | ||
/* Set up */ | ||
beforeEach(function () {}); | ||
|
||
/* Tear down */ | ||
afterEach(function () {}); | ||
|
||
describe("Initialization", function () { | ||
it("should create a GeoPoints instance", function () { | ||
new GeoPoints().should.be.instanceof(GeoPoints); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
test/js/specs/unit/models/connectors/GeoPoints-Cesium.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
define([ | ||
"../../../../../../../../src/js/models/connectors/GeoPoints-Cesium", | ||
], function (GeoPointsCesium) { | ||
// Configure the Chai assertion library | ||
var should = chai.should(); | ||
var expect = chai.expect; | ||
|
||
describe("GeoPointsCesium Test Suite", function () { | ||
/* Set up */ | ||
beforeEach(function () {}); | ||
|
||
/* Tear down */ | ||
afterEach(function () {}); | ||
|
||
describe("Initialization", function () { | ||
it("should create a GeoPointsCesium instance", function () { | ||
new GeoPointsCesium().should.be.instanceof(GeoPointsCesium); | ||
}); | ||
}); | ||
}); | ||
}); |
21 changes: 21 additions & 0 deletions
21
test/js/specs/unit/models/connectors/GeoPoints-CesiumPoints.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
define([ | ||
"../../../../../../../../src/js/models/connectors/GeoPoints-CesiumPoints", | ||
], function (GeoPointsCesiumPoints) { | ||
// Configure the Chai assertion library | ||
var should = chai.should(); | ||
var expect = chai.expect; | ||
|
||
describe("GeoPointsCesiumPoints Test Suite", function () { | ||
/* Set up */ | ||
beforeEach(function () {}); | ||
|
||
/* Tear down */ | ||
afterEach(function () {}); | ||
|
||
describe("Initialization", function () { | ||
it("should create a GeoPointsCesiumPoints instance", function () { | ||
new GeoPointsCesiumPoints().should.be.instanceof(GeoPointsCesiumPoints); | ||
}); | ||
}); | ||
}); | ||
}); |
21 changes: 21 additions & 0 deletions
21
test/js/specs/unit/models/connectors/GeoPoints-CesiumPolygon.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
define([ | ||
"../../../../../../../../src/js/models/connectors/GeoPoints-CesiumPolygon", | ||
], function (GeoPointsCesiumPolygon) { | ||
// Configure the Chai assertion library | ||
var should = chai.should(); | ||
var expect = chai.expect; | ||
|
||
describe("GeoPointsCesiumPolygon Test Suite", function () { | ||
/* Set up */ | ||
beforeEach(function () {}); | ||
|
||
/* Tear down */ | ||
afterEach(function () {}); | ||
|
||
describe("Initialization", function () { | ||
it("should create a GeoPointsCesiumPolygon instance", function () { | ||
new GeoPointsCesiumPolygon().should.be.instanceof(GeoPointsCesiumPolygon); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
define([ | ||
"../../../../../../../../src/js/models/maps/GeoBoundingBox", | ||
], function (GeoBoundingBox) { | ||
// Configure the Chai assertion library | ||
var should = chai.should(); | ||
var expect = chai.expect; | ||
|
||
describe("GeoBoundingBox Test Suite", function () { | ||
/* Set up */ | ||
beforeEach(function () {}); | ||
|
||
/* Tear down */ | ||
afterEach(function () {}); | ||
|
||
describe("Initialization", function () { | ||
it("should create a GeoBoundingBox instance", function () { | ||
new GeoBoundingBox().should.be.instanceof(GeoBoundingBox); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
define([ | ||
"../../../../../../../../src/js/models/maps/GeoUtilities", | ||
], function (GeoUtilities) { | ||
// Configure the Chai assertion library | ||
var should = chai.should(); | ||
var expect = chai.expect; | ||
|
||
describe("GeoUtilities Test Suite", function () { | ||
/* Set up */ | ||
beforeEach(function () {}); | ||
|
||
/* Tear down */ | ||
afterEach(function () {}); | ||
|
||
describe("Initialization", function () { | ||
it("should create a GeoUtilities instance", function () { | ||
new GeoUtilities().should.be.instanceof(GeoUtilities); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters