You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
496 B
JavaScript
17 lines
496 B
JavaScript
import { TileBoundingVolume } from "../../Source/Cesium.js";
|
|
|
|
describe("Scene/TileBoundingVolume", function () {
|
|
it("throws", function () {
|
|
var boundingVolume = new TileBoundingVolume();
|
|
expect(function () {
|
|
boundingVolume.createDebugVolume();
|
|
}).toThrowDeveloperError();
|
|
expect(function () {
|
|
boundingVolume.distanceToCamera();
|
|
}).toThrowDeveloperError();
|
|
expect(function () {
|
|
boundingVolume.intersectPlane();
|
|
}).toThrowDeveloperError();
|
|
});
|
|
});
|