當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript utility.Utility類代碼示例

本文整理匯總了TypeScript中tests/utility.Utility的典型用法代碼示例。如果您正苦於以下問題:TypeScript Utility類的具體用法?TypeScript Utility怎麽用?TypeScript Utility使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Utility類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it("should create a Page Break with correct attributes", () => {
     const newJson = Utility.jsonify(pageBreak);
     const attributes = {
         type: "page",
     };
     assert.equal(JSON.stringify(newJson.root[1].root[0].root), JSON.stringify(attributes));
 });
開發者ID:dolanmiu,項目名稱:docx,代碼行數:7,代碼來源:page-break.spec.ts

示例2: it

 it("should create a bookmark with the correct attributes on the bookmark end element", () => {
     const newJson = Utility.jsonify(bookmark);
     const attributes = {
         id: "1",
     };
     assert.equal(JSON.stringify(newJson.end.root[0].root), JSON.stringify(attributes));
 });
開發者ID:dolanmiu,項目名稱:docx,代碼行數:7,代碼來源:bookmark.spec.ts

示例3: it

 it("should create a Super Script with correct attributes", () => {
     const newJson = Utility.jsonify(superScript);
     const attributes = {
         val: "superscript",
     };
     assert.equal(JSON.stringify(newJson.root[0].root), JSON.stringify(attributes));
 });
開發者ID:dolanmiu,項目名稱:docx,代碼行數:7,代碼來源:script.spec.ts

示例4: it

 it("should create a element with correct root key", () => {
     const newJson = Utility.jsonify(new SimplePos());
     assert.equal(newJson.rootKey, "wp:simplePos");
     assert.include(newJson.root[0].root, {
         x: 0,
         y: 0,
     });
 });
開發者ID:dolanmiu,項目名稱:docx,代碼行數:8,代碼來源:simple-pos.spec.ts

示例5: it

 it("should create a Tab Stop with correct attributes", () => {
     const newJson = Utility.jsonify(tabStop);
     const attributes = {
         val: "left",
         pos: 100,
     };
     assert.equal(JSON.stringify(newJson.root[0].root[0].root), JSON.stringify(attributes));
 });
開發者ID:dolanmiu,項目名稱:docx,代碼行數:8,代碼來源:tab-stop.spec.ts

示例6: it

 it("should create a hyperlink with right attributes", () => {
     const newJson = Utility.jsonify(hyperlink);
     const attributes = {
         history: 1,
         id: "rId1",
     };
     assert.equal(JSON.stringify(newJson.root[0].root), JSON.stringify(attributes));
 });
開發者ID:dolanmiu,項目名稱:docx,代碼行數:8,代碼來源:hyperlink.spec.ts

示例7: it

 it("should create a Thematic Break with correct border properties", () => {
     const newJson = Utility.jsonify(thematicBreak);
     const attributes = {
         color: "auto",
         space: "1",
         val: "single",
         sz: "6",
     };
     assert.equal(JSON.stringify(newJson.root[0].root[0].root), JSON.stringify(attributes));
 });
開發者ID:dolanmiu,項目名稱:docx,代碼行數:10,代碼來源:border.spec.ts

示例8: it

 it("should create a drawing with anchor element when there options are passed", () => {
     currentBreak = createDrawing({
         floating: {
             horizontalPosition: {
                 offset: 0,
             },
             verticalPosition: {
                 offset: 0,
             },
         },
     });
     const newJson = Utility.jsonify(currentBreak);
     assert.equal(newJson.root[0].rootKey, "wp:anchor");
 });
開發者ID:dolanmiu,項目名稱:docx,代碼行數:14,代碼來源:drawing.spec.ts


注:本文中的tests/utility.Utility類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。