1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| import { Cesium3DTileContentType } from "../../Source/Cesium.js";
|
| describe("Scene/Cesium3DTileContentType", function () {
| it("isBinaryFormat correctly identifies binary contents", function () {
| var types = ["b3dm", "i3dm", "glb", "vctr", "geom", "subt", "cmpt", "pnts"];
| types.map(function (type) {
| expect(Cesium3DTileContentType.isBinaryFormat(type)).toBe(true);
| });
| });
|
| it("isBinaryFormat returns false for other content types", function () {
| var types = ["gltf", "external", "multipleContent", "notAMagic"];
| types.map(function (type) {
| expect(Cesium3DTileContentType.isBinaryFormat(type)).toBe(false);
| });
| });
| });
|
|