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


TypeScript ltx.equal函數代碼示例

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


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

示例1: it

    it('Runs successfully with XML variable substitution', (done:MochaDone) => {
        let tp = path.join(__dirname, "..", "node_modules", "webdeployment-common", "Tests", 'L1XmlVarSub.js');
        let tr : ttm.MockTestRunner = new ttm.MockTestRunner(tp);
        tr.run();
		
        var resultFile = ltx.parse(fs.readFileSync(path.join(__dirname,  "..", "node_modules","webdeployment-common","Tests", 'L1XmlVarSub', 'Web_test.config')));
        var expectFile = ltx.parse(fs.readFileSync(path.join(__dirname, "..", "node_modules","webdeployment-common","Tests", 'L1XmlVarSub', 'Web_Expected.config')));
        assert(ltx.equal(resultFile, expectFile) , 'Should have substituted variables in Web.config file');
        var resultFile = ltx.parse(fs.readFileSync(path.join(__dirname, "..", "node_modules", "webdeployment-common", "Tests", 'L1XmlVarSub', 'Web_test.Debug.config')));
        var expectFile = ltx.parse(fs.readFileSync(path.join(__dirname, "..", "node_modules", "webdeployment-common", "Tests", 'L1XmlVarSub', 'Web_Expected.Debug.config')));
        assert(ltx.equal(resultFile, expectFile) , 'Should have substituted variables in Web.Debug.config file');
        done();
    });
開發者ID:DarqueWarrior,項目名稱:vsts-tasks,代碼行數:13,代碼來源:L0.ts

示例2: it

    it('Runs successfully with XML variable substitution', (done:MochaDone) => {
        let tp = path.join(__dirname, 'L0XmlVarSub.js');
        let tr : ttm.MockTestRunner = new ttm.MockTestRunner(tp);
        tr.run();
		
        var resultFile = ltx.parse(fs.readFileSync(path.join(__dirname, 'L1XmlVarSub/Web_test.config')));
        var expectFile = ltx.parse(fs.readFileSync(path.join(__dirname, 'L1XmlVarSub/Web_Expected.config')));
        assert(ltx.equal(resultFile, expectFile) , 'Should have substituted variables in Web.config file');

        var resultFile = ltx.parse(fs.readFileSync(path.join(__dirname, 'L1XmlVarSub/Web_test.Debug.config')));
        var expectFile = ltx.parse(fs.readFileSync(path.join(__dirname, 'L1XmlVarSub/Web_Expected.Debug.config')));
        assert(ltx.equal(resultFile, expectFile) , 'Should have substituted variables in Web.Debug.config file');
        var expectedOut = 'Updated history to kudu'; 
        assert(tr.stdout.search(expectedOut) > 0, 'should have said: ' + expectedOut);
        done();
    });
開發者ID:mthalman-msft,項目名稱:vsts-tasks,代碼行數:16,代碼來源:L0.ts

示例3: it

        it('Runs successfully with XML Transformation (L1)', (done:MochaDone) => {
            let tp = path.join(__dirname, "..", "node_modules","webdeployment-common","Tests","L1XdtTransform.js");
            let tr : ttm.MockTestRunner = new ttm.MockTestRunner(tp);
            tr.run();

            var resultFile = ltx.parse(fs.readFileSync(path.join(__dirname, "..", "node_modules","webdeployment-common","Tests", 'L1XdtTransform', 'Web_test.config')));
            var expectFile = ltx.parse(fs.readFileSync(path.join(__dirname, "..", "node_modules","webdeployment-common","Tests", 'L1XdtTransform','Web_Expected.config')));
            assert(ltx.equal(resultFile, expectFile) , 'Should Transform attributes on Web.config');
            done();
        });
開發者ID:DarqueWarrior,項目名稱:vsts-tasks,代碼行數:10,代碼來源:L0.ts

示例4:

import * as ltx from 'ltx';

let el: ltx.Element = null as any;
let maybeEl: ltx.Element | undefined = null as any;
let els: ltx.Element[] = [];
let bool: boolean;
const any: any = null;
let str: string = null as any;

el = ltx.clone(el);

bool = ltx.nameEqual(el, el);
bool = ltx.attrsEqual(el, el);
bool = ltx.childrenEqual(el, el);
bool = ltx.equal(el, el);

el = ltx.createElement('el');
el = ltx.createElement('el', 'xml');
el = ltx.createElement('el', { foo: 'bar' });
el = ltx.createElement('el', { foo: 'bar' }, el);
el = ltx.createElement('el', { foo: 'bar' }, 'hi');

if (ltx.isNode(any)) {
    // $ExpectType Node
    any;
}
if (ltx.isElement(any)) {
    // $ExpectType Element
    any;
}
if (ltx.isText(any)) {
開發者ID:CNBoland,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:ltx-tests.ts


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