codecamp

框架测试的能力

TestRunner模块提供了框架测试的能力。包括准备单元测试环境、运行测试用例。

如果您想实现自己的单元测试框架,您必须继承这个类并覆盖它的所有方法。

说明

本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

导入模块

  1. import TestRunner from '@ohos.application.testRunner';

TestRunner.onPrepare

onPrepare(): void

为运行测试用例准备单元测试环境

系统能力: SystemCapability.Ability.AbilityRuntime.Core

示例:

  1. export default class UserTestRunner implements TestRunner {
  2. onPrepare() {
  3. console.log('Trigger onPrepare');
  4. }
  5. onRun() {}
  6. };

TestRunner.onRun

onRun(): void

运行测试用例

系统能力: SystemCapability.Ability.AbilityRuntime.Core

示例:

  1. export default class UserTestRunner implements TestRunner {
  2. onPrepare() {}
  3. onRun() {
  4. console.log('Trigger onRun');
  5. }
  6. };
xml解析与生成
模拟UI操作的能力
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

媒体组件

像素

枚举

类型

接口

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }