Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
Hello UTS
提交
26920330
H
Hello UTS
项目概览
DCloud
/
Hello UTS
通知
1598
Star
27
Fork
9
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
2
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
Hello UTS
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
2
Issue
2
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
26920330
编写于
11月 29, 2023
作者:
雪洛
1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 修改条件编译屏蔽web端不支持的测试例
上级
49ecc180
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
291 addition
and
275 deletion
+291
-275
.editorconfig
.editorconfig
+12
-0
uni_modules/uts-tests/utssdk/KeyWord.uts
uni_modules/uts-tests/utssdk/KeyWord.uts
+129
-124
uni_modules/uts-tests/utssdk/Number.uts
uni_modules/uts-tests/utssdk/Number.uts
+150
-151
未找到文件。
.editorconfig
0 → 100644
浏览文件 @
26920330
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
\ No newline at end of file
uni_modules/uts-tests/utssdk/KeyWord.uts
浏览文件 @
26920330
import { describe, test, expect, Result } from './tests.uts'
class User{
name:
string = "";
age:
number = 0
class User
{
name :
string = "";
age :
number = 0
}
const passcode = "secret passcode";
class Parent {
private _name
: string = ""; // private是私有的,外部不能访问
get name()
: string { // 读取name会触发此拦截器
private _name
: string = ""; // private是私有的,外部不能访问
get name()
: string { // 读取name会触发此拦截器
console.log("start to get parent.name");
return this._name;
}
set name(newName
: string) { // 给name赋值会触发此拦截器
set name(newName
: string) { // 给name赋值会触发此拦截器
console.log("start to set parent.name");
if (passcode == "secret passcode") { // 校验是否有权修改name的值,这里的条件可以修改以方便测试
this._name = newName;
...
...
@@ -22,25 +22,25 @@ class Parent {
}
// 静态属性和方法
static age
: number = 30
static run()
: string {
static age
: number = 30
static run()
: string {
console.log("this is a static method")
return "static method"
}
// readonly
readonly address
: string = ""
readonly address
: string = ""
weight
: number = 80
weight
: number = 80
// constructor
constructor(weight
: number) {
constructor(weight
: number) {
console.log("开始实例化")
this.weight = weight
}
// 实例方法
eat()
: string {
eat()
: string {
console.log("this is parent")
return "parent instance method"
}
...
...
@@ -53,7 +53,7 @@ class ChildrenTest extends Parent {
// super(weight)
// }
override eat()
: string {
override eat()
: string {
super.eat()
return "children instance method"
}
...
...
@@ -64,7 +64,7 @@ class ChildrenTest extends Parent {
// #endif
}
export function testKeyWord(): Result {
export function testKeyWord()
: Result {
return describe("KeyWord", () => {
test('new', () => {
...
...
@@ -81,21 +81,24 @@ export function testKeyWord(): Result {
test('typeof', () => {
let new1 = new User()
expect(typeof(new1)).toEqual('object')
expect(typeof(123456.789)).toEqual('Double')
expect(typeof (new1)).toEqual('object')
// #ifdef APP-ANDROID || APP-IOS
expect(typeof (123456.789)).toEqual('Double')
//expect(typeof(789778979798797987979)).toEqual('number')
expect(typeof(0.0)).toEqual('Double')
expect(typeof (0.0)).toEqual('Double')
// #endif
expect(typeof
("hello world")).toEqual('string')
expect(typeof([1,2,
3])).toEqual('object')
expect(typeof
(new Array<any>())).toEqual('object')
expect(typeof
(new Set<any>())).toEqual('object')
expect(typeof
("hello world")).toEqual('string')
expect(typeof ([1, 2,
3])).toEqual('object')
expect(typeof
(new Array<any>())).toEqual('object')
expect(typeof
(new Set<any>())).toEqual('object')
// expect(typeof(new Map<any,any>())).toEqual('object')
expect(typeof
(new Date())).toEqual('object')
expect(typeof
("hello world")).toEqual('string')
expect(typeof
(new Date())).toEqual('object')
expect(typeof
("hello world")).toEqual('string')
// 原生对象
// #ifndef APP-IOS
expect(typeof
(UTSAndroid.getUniActivity())).toEqual('object')
// #ifdef APP-ANDROID
expect(typeof
(UTSAndroid.getUniActivity())).toEqual('object')
// #endif
...
...
@@ -103,22 +106,24 @@ export function testKeyWord(): Result {
test('instanceof', () => {
let user1:
any = new User()
let user1 :
any = new User()
let instanceRet1 = user1 instanceof User
expect(instanceRet1).toEqual(true)
let instanceRet2 = (typeof user1) == "string"
expect(instanceRet2).toEqual(false)
let num1:any = 3.1415926
let num1 : any = 3.1415926
let instanceRet3 = (typeof num1) == "string"
expect(instanceRet3).toEqual(false)
// #ifdef APP-ANDROID
let instanceRet4 = (typeof num1) == "number"
expect(instanceRet4).toEqual(false)
// #endif
})
test('isArray', () => {
let user1:
any = new User()
let user1 :
any = new User()
expect(Array.isArray(user1)).toEqual(false)
expect(Array.isArray([1,2,
3])).toEqual(true)
expect(Array.isArray([1, 2,
3])).toEqual(true)
})
test('class', () => {
...
...
uni_modules/uts-tests/utssdk/Number.uts
浏览文件 @
26920330
import { describe, test, expect, Result } from './tests.uts'
export function testNumber(): Result {
export function testNumber()
: Result {
return describe("Number", () => {
test('toFixed', () => {
function financial(x: Number)
: String {
function financial(x : Number)
: String {
return x.toFixed(2);
}
expect(financial(123.456)).toEqual('123.46');
...
...
@@ -12,23 +12,23 @@ export function testNumber(): Result {
expect(financial(0)).toEqual("0.00");
expect(financial(1)).toEqual("1.00");
let num1
: number = -1.1 / 0.1
let num2
: number = -1.1 / 0.1
let num3
: number = -1.1 / -0.1
let num1
: number = -1.1 / 0.1
let num2
: number = -1.1 / 0.1
let num3
: number = -1.1 / -0.1
console.warn(num1)
console.warn(num2)
console.warn(num3)
let obj = {"id":"3be2c600-894c-4231-aa56-82fd989cc961","result":{"result":[num1, num2, num3]}
}
let obj = { "id": "3be2c600-894c-4231-aa56-82fd989cc961", "result": { "result": [num1, num2, num3] }
}
console.log(JSON.stringify(obj))
// #ifndef APP-IOS
// android 专有数据类型
expect(123456.789.toFixed(2)).toEqual("123456.79");
expect(12345600123.789123.toFixed(2)).toEqual("12345600123.79");
expect((-123456.789).toFixed(5)).toEqual("-123456.78900");
expect(parseFloat("16688995566.369").toFixed(3)).toEqual("16688995566.369");
// #ifndef APP-ANDROID
let a1 = 56
let a2 = -122
expect(a1.toByte().toFixed(2)).toEqual("56.00");
...
...
@@ -36,7 +36,6 @@ export function testNumber(): Result {
expect(a1.toShort().toFixed(5)).toEqual("56.00000");
expect(a2.toShort().toFixed(5)).toEqual("-122.00000");
// #endif
})
...
...
雪洛
@u013082782
mentioned in commit
71a42e50
·
11月 29, 2023
mentioned in commit
71a42e50
mentioned in commit 71a42e50bdcbc8504f28a7c8c5ea244d4eff000d
开关提交列表
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录