You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/__test__/FeedingToolPath/qiannianzhou_lvzhijia.test.ts

14 lines
445 B

import { FeedingToolPath } from "../../src/GraphicsSystem/ToolPath/FeedingToolPath";
import "../Utils/jest.util";
import { LoadBoardsFromFileData } from "../Utils/LoadEntity.util";
import { testPathCount } from "./testPathCount";
export let feedUtil = FeedingToolPath.GetInstance();
test("千年舟 绿色健康之家", () =>
{
let data = require("./board.json");
let brs = LoadBoardsFromFileData(data);
testPathCount(brs[0]);
});