• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript should.exist函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中should.exist函数的典型用法代码示例。如果您正苦于以下问题:TypeScript exist函数的具体用法?TypeScript exist怎么用?TypeScript exist使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了exist函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: it

 it('should result in a server transport provider', () => {
   const logger = new Logger(provider.config.logger);
   server = new Server(provider.config.server, logger);
   should.exist(server);
 });
开发者ID:restorecommerce,项目名称:chassis-srv,代码行数:5,代码来源:transport_test.ts


示例2: describe

 describe('Update', function() {
   should.exist(true); // no-op
   // access tokens have no update API, they can only be created or removed
 });
开发者ID:BitGo,项目名称:BitGoJS,代码行数:4,代码来源:accesstoken.ts


示例3: it

            it("should raise a new condition ", () => {

                const namespace = addressSpace.getOwnNamespace();
                const condition = namespace.instantiateCondition(myCustomConditionType, {
                    browseName: "MyCustomCondition3",
                    conditionSource: source,
                    optionals: [
                        "EnabledState.EffectiveDisplayName",
                        "EnabledState.TransitionTime"
                    ],
                    organizedBy: addressSpace.rootFolder.objects

                });

                // install the event catcher
                const serverObject = addressSpace.rootFolder.objects.server;

                const spy_on_event = sinon.spy();

                serverObject.on("event", spy_on_event);

                // raise the event
                condition.raiseNewCondition({
                    message: "Hello Message",
                    quality: StatusCodes.Good,
                    severity: 1235
                });

                spy_on_event.callCount.should.eql(1);

                const evtData = spy_on_event.getCall(0).args[0];

                // xx console.log("evtData = ", evtData.constructor.name);
                // xx console.log("evtData = ", evtData);

                // Xx console.log(" EVENT RECEIVED :", evtData.sourceName.readValue().value.toString());
                // Xx console.log(" EVENT ID :",       evtData.eventId.readValue().value.toString("hex"));

                should.exist(evtData.eventId.value, "Event must have a unique eventId");
                evtData.severity.value.should.eql(1235); // ,"the severity should match expecting severity");
                evtData.quality.value.should.eql(StatusCodes.Good);

                // the sourceName of the event should match the ConditionSourceNode

                // xx todo evtData.getSourceName().text.should.eql(source.browseName.toString());

                evtData.eventType.value.should.eql(myCustomConditionType.nodeId);
                evtData.message.value.text.should.eql("Hello Message");
                evtData.sourceNode.value.should.eql(source.nodeId);

                // raise an other event
                condition.raiseNewCondition({
                    message: "Something nasty happened",
                    quality: StatusCodes.Bad,
                    severity: 1000
                });

                spy_on_event.callCount.should.eql(2);

                const evtData1 = spy_on_event.getCall(1).args[0];
                // xx console.log(" EVENT RECEIVED :", evtData1.sourceName.readValue().value.value);
                // xx console.log(" EVENT ID :", evtData1.eventId.readValue().value.value.toString("hex"));

                should(evtData1.eventId.value).not.eql(evtData.eventId.value, "EventId must be different from previous one");
                evtData1.severity.value.should.eql(1000, "the severity should match expecting severity");
                evtData1.quality.value.should.eql(StatusCodes.Bad);
                // raise with only severity
                condition.raiseNewCondition({
                    severity: 1001
                });
                spy_on_event.callCount.should.eql(3);
                const evtData2 = spy_on_event.getCall(2).args[0];
                // xx console.log(" EVENT RECEIVED :", evtData2.sourceName.readValue().value.value);
                // xx console.log(" EVENT ID :", evtData2.eventId.readValue().value.value.toString("hex"));

                should(evtData2.eventId.value).not.eql(evtData.eventId.value, "EventId must be different from previous one");
                evtData2.severity.value.should.eql(1001, "the severity should match expecting severity");
                evtData2.quality.value.should.eql(StatusCodes.Bad);

            });
开发者ID:node-opcua,项目名称:node-opcua,代码行数:80,代码来源:utest_condition.ts



注:本文中的should.exist函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript should.not类代码示例发布时间:2022-05-25
下一篇:
TypeScript should.equal函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap