Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
Hello UTS
提交
ba58c133
H
Hello UTS
项目概览
DCloud
/
Hello UTS
通知
1595
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看板
提交
ba58c133
编写于
7月 29, 2024
作者:
M
mahaifeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[arraybuffer]修改1.0编译失败
上级
48a4d1f4
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
62 addition
and
49 deletion
+62
-49
uni_modules/uts-tests/utssdk/ArrayBuffer.uts
uni_modules/uts-tests/utssdk/ArrayBuffer.uts
+1
-2
uni_modules/uts-tests/utssdk/TDataView.uts
uni_modules/uts-tests/utssdk/TDataView.uts
+1
-1
uni_modules/uts-tests/utssdk/TFloat32Array.uts
uni_modules/uts-tests/utssdk/TFloat32Array.uts
+4
-4
uni_modules/uts-tests/utssdk/TFloat64Array.uts
uni_modules/uts-tests/utssdk/TFloat64Array.uts
+4
-4
uni_modules/uts-tests/utssdk/TInt16Array.uts
uni_modules/uts-tests/utssdk/TInt16Array.uts
+17
-16
uni_modules/uts-tests/utssdk/TInt32Array.uts
uni_modules/uts-tests/utssdk/TInt32Array.uts
+6
-4
uni_modules/uts-tests/utssdk/TInt8Array.uts
uni_modules/uts-tests/utssdk/TInt8Array.uts
+4
-2
uni_modules/uts-tests/utssdk/TUInt8Array.uts
uni_modules/uts-tests/utssdk/TUInt8Array.uts
+6
-4
uni_modules/uts-tests/utssdk/TUInt8ClampedArray.uts
uni_modules/uts-tests/utssdk/TUInt8ClampedArray.uts
+5
-3
uni_modules/uts-tests/utssdk/TUint16Array.uts
uni_modules/uts-tests/utssdk/TUint16Array.uts
+4
-5
uni_modules/uts-tests/utssdk/TUint32Array.uts
uni_modules/uts-tests/utssdk/TUint32Array.uts
+5
-4
uni_modules/uts-tests/utssdk/index.uts
uni_modules/uts-tests/utssdk/index.uts
+5
-0
未找到文件。
uni_modules/uts-tests/utssdk/ArrayBuffer.uts
浏览文件 @
ba58c133
...
@@ -23,8 +23,7 @@ const int16 = new TInt16Array()
...
@@ -23,8 +23,7 @@ const int16 = new TInt16Array()
export function testArrayBuffer() : Result {
export function testArrayBuffer() : Result {
return describe("ArrayBuffer", () => {
return describe("ArrayBuffer", () => {
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
//dataview start
//dataview start
test('dataview_constructor', () => {
test('dataview_constructor', () => {
tDataView.setConstructor()
tDataView.setConstructor()
...
...
uni_modules/uts-tests/utssdk/TDataView.uts
浏览文件 @
ba58c133
...
@@ -18,7 +18,7 @@ export class TDataView {
...
@@ -18,7 +18,7 @@ export class TDataView {
// this.setUint8();
// this.setUint8();
// this.testMix();
// this.testMix();
}
}
// #if
ndef APP-IOS
// #if
def (UNI-APP-X && APP-ANDROID) || WEB
setConstructor() {
setConstructor() {
let buffer = new ArrayBuffer(16);
let buffer = new ArrayBuffer(16);
let dataview = new DataView(buffer);
let dataview = new DataView(buffer);
...
...
uni_modules/uts-tests/utssdk/TFloat32Array.uts
浏览文件 @
ba58c133
...
@@ -7,7 +7,7 @@ import {
...
@@ -7,7 +7,7 @@ import {
export class TFloat32Array {
export class TFloat32Array {
test() {
test() {
// #if
ndef APP-IOS
// #if
def (UNI-APP-X && APP-ANDROID) || WEB
this.testfloat32();
this.testfloat32();
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
...
@@ -34,7 +34,7 @@ export class TFloat32Array {
...
@@ -34,7 +34,7 @@ export class TFloat32Array {
this.arrayBufferSlice();
this.arrayBufferSlice();
// #endif
// #endif
}
}
// #if
ndef APP-IOS
// #if
def (UNI-APP-X && APP-ANDROID) || WEB
from() {
from() {
var float32Array = Float32Array.from([1, 2, 3], (v : number, _ : number) : number => v + v);
var float32Array = Float32Array.from([1, 2, 3], (v : number, _ : number) : number => v + v);
expect(float32Array.toString()).toEqual('2,4,6');
expect(float32Array.toString()).toEqual('2,4,6');
...
@@ -76,12 +76,12 @@ export class TFloat32Array {
...
@@ -76,12 +76,12 @@ export class TFloat32Array {
var array = [1, 2, 3]
var array = [1, 2, 3]
float32.set(array, 1);
float32.set(array, 1);
expect(float32.toString()).toEqual("0,1,2,3,0,0,0,0");
expect(float32.toString()).toEqual("0,1,2,3,0,0,0,0");
let src = [1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4];
let src = [1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4];
let typed_dest = new Float32Array(16);
let typed_dest = new Float32Array(16);
typed_dest.set(src);
typed_dest.set(src);
expect(typed_dest.toString()).toEqual("1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4");
expect(typed_dest.toString()).toEqual("1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4");
let typed_src = new Float32Array(src);
let typed_src = new Float32Array(src);
typed_dest = new Float32Array(16);
typed_dest = new Float32Array(16);
typed_dest.set(typed_src);
typed_dest.set(typed_src);
...
...
uni_modules/uts-tests/utssdk/TFloat64Array.uts
浏览文件 @
ba58c133
...
@@ -7,7 +7,7 @@ import {
...
@@ -7,7 +7,7 @@ import {
export class TFloat64Array {
export class TFloat64Array {
test() {
test() {
// #if
ndef APP-IOS
// #if
def (UNI-APP-X && APP-ANDROID) || WEB
this.testfloat64();
this.testfloat64();
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
...
@@ -34,7 +34,7 @@ export class TFloat64Array {
...
@@ -34,7 +34,7 @@ export class TFloat64Array {
this.arrayBufferSlice();
this.arrayBufferSlice();
// #endif
// #endif
}
}
// #if
ndef APP-IOS
// #if
def (UNI-APP-X && APP-ANDROID) || WEB
testfloat64() {
testfloat64() {
let float64 = new Float64Array(2);
let float64 = new Float64Array(2);
float64[0] = 42;
float64[0] = 42;
...
@@ -315,8 +315,8 @@ export class TFloat64Array {
...
@@ -315,8 +315,8 @@ export class TFloat64Array {
for (let i = 0; i < size; ++i) {
for (let i = 0; i < size; ++i) {
initialFloat64Array[i] = Math.random();
initialFloat64Array[i] = Math.random();
}
}
let arr
= new Float64Array(initialFloat64Array);
let arr = new Float64Array(initialFloat64Array);
let new_arr
= arr.subarray(1, size - 1);
let new_arr = arr.subarray(1, size - 1);
for (let i = 1; i < size - 1; ++i) {
for (let i = 1; i < size - 1; ++i) {
if (arr[i] !== new_arr[i - 1]) {
if (arr[i] !== new_arr[i - 1]) {
expect(true).toEqual(false);
expect(true).toEqual(false);
...
...
uni_modules/uts-tests/utssdk/TInt16Array.uts
浏览文件 @
ba58c133
...
@@ -7,7 +7,7 @@ import {
...
@@ -7,7 +7,7 @@ import {
export class TInt16Array {
export class TInt16Array {
test() {
test() {
// #if
ndef APP-IOS
// #if
def (UNI-APP-X && APP-ANDROID) || WEB
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
this.testCopyWith();
this.testCopyWith();
...
@@ -34,7 +34,8 @@ export class TInt16Array {
...
@@ -34,7 +34,8 @@ export class TInt16Array {
// #endif
// #endif
}
}
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
testConstructor() {
testConstructor() {
let buffer = new ArrayBuffer(16);
let buffer = new ArrayBuffer(16);
let int16 = new Int16Array(buffer);
let int16 = new Int16Array(buffer);
...
@@ -62,7 +63,7 @@ export class TInt16Array {
...
@@ -62,7 +63,7 @@ export class TInt16Array {
testEvery() {
testEvery() {
// #TEST Int16Array.every
// #TEST Int16Array.every
let result = new Int16Array([12, 5, 8, 130, 44]).every((value, _, _a
:Int16Array):
boolean => value < 40);
let result = new Int16Array([12, 5, 8, 130, 44]).every((value, _, _a
: Int16Array) :
boolean => value < 40);
expect(result).toEqual(false);
expect(result).toEqual(false);
// #END
// #END
}
}
...
@@ -88,7 +89,7 @@ export class TInt16Array {
...
@@ -88,7 +89,7 @@ export class TInt16Array {
testFilter() {
testFilter() {
// #TEST Int16Array.filter
// #TEST Int16Array.filter
let int16 = new Int16Array([12, 5, 8, 44]).filter((value, _, _a
:Int16Array):
boolean => value >= 10);
let int16 = new Int16Array([12, 5, 8, 44]).filter((value, _, _a
: Int16Array) :
boolean => value >= 10);
expect(int16.toString()).toEqual("12,44");
expect(int16.toString()).toEqual("12,44");
// #END
// #END
}
}
...
@@ -96,7 +97,7 @@ export class TInt16Array {
...
@@ -96,7 +97,7 @@ export class TInt16Array {
find() {
find() {
// #TEST Int16Array.find
// #TEST Int16Array.find
let int16 = new Int16Array([4, 5, 8, 12]);
let int16 = new Int16Array([4, 5, 8, 12]);
let res = int16.find((value, _, _a
:Int16Array):
boolean => value > 5);
let res = int16.find((value, _, _a
: Int16Array) :
boolean => value > 5);
expect(res).toEqual(8);
expect(res).toEqual(8);
// #END
// #END
}
}
...
@@ -104,18 +105,18 @@ export class TInt16Array {
...
@@ -104,18 +105,18 @@ export class TInt16Array {
findIndex() {
findIndex() {
// #TEST Int16Array.findIndex
// #TEST Int16Array.findIndex
let int16 = new Int16Array([4, 6, 8, 12]);
let int16 = new Int16Array([4, 6, 8, 12]);
let res = int16.findIndex((value, _, _a
:Int16Array):
boolean => value > 100);
let res = int16.findIndex((value, _, _a
: Int16Array) :
boolean => value > 100);
expect(res).toEqual(-1);
expect(res).toEqual(-1);
int16 = new Int16Array([4, 6, 7, 120]);
int16 = new Int16Array([4, 6, 7, 120]);
res = int16.findIndex((value, _, _a
:Int16Array):
boolean => value > 100);
res = int16.findIndex((value, _, _a
: Int16Array) :
boolean => value > 100);
expect(res).toEqual(3);
expect(res).toEqual(3);
// #END
// #END
}
}
foreach() {
foreach() {
// #TEST Int16Array.forEach
// #TEST Int16Array.forEach
new Int16Array([0, 1, 2, 3]).forEach((value, index, _
:
Int16Array) => {
new Int16Array([0, 1, 2, 3]).forEach((value, index, _
:
Int16Array) => {
console.log(`a[${index}] = ${value}`);
console.log(`a[${index}] = ${value}`);
});
});
// #END
// #END
...
@@ -192,7 +193,7 @@ export class TInt16Array {
...
@@ -192,7 +193,7 @@ export class TInt16Array {
map() {
map() {
// #TEST Int16Array.map
// #TEST Int16Array.map
let numbers = new Int16Array([1, 4, 9]);
let numbers = new Int16Array([1, 4, 9]);
let doubles = numbers.map((value, _, _a
:Int16Array):
number => value * 2);
let doubles = numbers.map((value, _, _a
: Int16Array) :
number => value * 2);
expect(numbers.toString()).toEqual("1,4,9");
expect(numbers.toString()).toEqual("1,4,9");
expect(doubles.toString()).toEqual("2,8,18");
expect(doubles.toString()).toEqual("2,8,18");
// #END
// #END
...
@@ -201,11 +202,11 @@ export class TInt16Array {
...
@@ -201,11 +202,11 @@ export class TInt16Array {
reduce() {
reduce() {
// #TEST Int16Array.reduce
// #TEST Int16Array.reduce
let total = new Int16Array([0, 1, 2, 3]);
let total = new Int16Array([0, 1, 2, 3]);
let res = total.reduce((accumulator, currentValue, _, _a
:Int16Array):
number => accumulator + currentValue);
let res = total.reduce((accumulator, currentValue, _, _a
: Int16Array) :
number => accumulator + currentValue);
expect(res).toEqual(6);
expect(res).toEqual(6);
total = new Int16Array([0, 1, 2, 3]);
total = new Int16Array([0, 1, 2, 3]);
res = total.reduce((accumulator, currentValue, _, _a
:Int16Array):
number => accumulator + currentValue, 8);
res = total.reduce((accumulator, currentValue, _, _a
: Int16Array) :
number => accumulator + currentValue, 8);
expect(res).toEqual(14);
expect(res).toEqual(14);
// #END
// #END
}
}
...
@@ -213,11 +214,11 @@ export class TInt16Array {
...
@@ -213,11 +214,11 @@ export class TInt16Array {
reduceRight() {
reduceRight() {
// #TEST Int16Array.reduceRight
// #TEST Int16Array.reduceRight
let total = new Int16Array([0, 1, 2, 3]);
let total = new Int16Array([0, 1, 2, 3]);
let res = total.reduceRight((accumulator, currentValue, _, _a
:Int16Array):
number => accumulator + currentValue);
let res = total.reduceRight((accumulator, currentValue, _, _a
: Int16Array) :
number => accumulator + currentValue);
expect(res).toEqual(6);
expect(res).toEqual(6);
total = new Int16Array([0, 1, 2, 3]);
total = new Int16Array([0, 1, 2, 3]);
res = total.reduceRight((accumulator, currentValue, _, _a
:Int16Array):
number => accumulator + currentValue, 8);
res = total.reduceRight((accumulator, currentValue, _, _a
: Int16Array) :
number => accumulator + currentValue, 8);
expect(res).toEqual(14);
expect(res).toEqual(14);
// #END
// #END
}
}
...
@@ -253,7 +254,7 @@ export class TInt16Array {
...
@@ -253,7 +254,7 @@ export class TInt16Array {
numbers.sort();
numbers.sort();
expect(numbers.toString()).toEqual("1,5,40");
expect(numbers.toString()).toEqual("1,5,40");
numbers.sort((a, b)
:
number => a - b);
numbers.sort((a, b)
:
number => a - b);
expect(numbers.toString()).toEqual("1,5,40");
expect(numbers.toString()).toEqual("1,5,40");
// #END
// #END
}
}
...
@@ -279,7 +280,7 @@ export class TInt16Array {
...
@@ -279,7 +280,7 @@ export class TInt16Array {
}
}
arrayBufferSlice() {
arrayBufferSlice() {
// #TEST ArrayBuffer.slice with Int16Array
// #TEST ArrayBuffer.slice with Int16Array
let buffer = new ArrayBuffer(16);
let buffer = new ArrayBuffer(16);
let int16 = new Int16Array(buffer);
let int16 = new Int16Array(buffer);
...
@@ -290,7 +291,7 @@ export class TInt16Array {
...
@@ -290,7 +291,7 @@ export class TInt16Array {
let sliced = new Int16Array(res);
let sliced = new Int16Array(res);
expect(sliced[0]).toEqual(42);
expect(sliced[0]).toEqual(42);
// #END
// #END
}
}
testSome() {
testSome() {
// #TEST Int16Array.some
// #TEST Int16Array.some
...
...
uni_modules/uts-tests/utssdk/TInt32Array.uts
浏览文件 @
ba58c133
...
@@ -7,7 +7,8 @@ import {
...
@@ -7,7 +7,8 @@ import {
export class TInt32Array {
export class TInt32Array {
test() {
test() {
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
this.testInt32Array();
this.testInt32Array();
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
...
@@ -35,7 +36,8 @@ export class TInt32Array {
...
@@ -35,7 +36,8 @@ export class TInt32Array {
// #endif
// #endif
}
}
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
testInt32Array() {
testInt32Array() {
let int32 = new Int32Array(2);
let int32 = new Int32Array(2);
int32[0] = 42;
int32[0] = 42;
...
@@ -298,7 +300,7 @@ export class TInt32Array {
...
@@ -298,7 +300,7 @@ export class TInt32Array {
}
}
arrayBufferSlice() {
arrayBufferSlice() {
// #TEST ArrayBuffer.slice
// #TEST ArrayBuffer.slice
let buffer = new ArrayBuffer(16);
let buffer = new ArrayBuffer(16);
let int32 = new Int32Array(buffer);
let int32 = new Int32Array(buffer);
...
@@ -309,7 +311,7 @@ export class TInt32Array {
...
@@ -309,7 +311,7 @@ export class TInt32Array {
let sliced = new Int32Array(res);
let sliced = new Int32Array(res);
expect(sliced[1]).toEqual(42);
expect(sliced[1]).toEqual(42);
// #END
// #END
}
}
testSome() {
testSome() {
// #TEST Int32Array.some
// #TEST Int32Array.some
...
...
uni_modules/uts-tests/utssdk/TInt8Array.uts
浏览文件 @
ba58c133
...
@@ -8,7 +8,8 @@ import {
...
@@ -8,7 +8,8 @@ import {
export class TInt8Array {
export class TInt8Array {
test() {
test() {
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
this.testCopyWith();
this.testCopyWith();
...
@@ -35,7 +36,8 @@ export class TInt8Array {
...
@@ -35,7 +36,8 @@ export class TInt8Array {
//#endif
//#endif
}
}
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
testConstructor() {
testConstructor() {
let buffer = new ArrayBuffer(16);
let buffer = new ArrayBuffer(16);
let int8View = new Int8Array(buffer);
let int8View = new Int8Array(buffer);
...
...
uni_modules/uts-tests/utssdk/TUInt8Array.uts
浏览文件 @
ba58c133
...
@@ -7,7 +7,8 @@ import {
...
@@ -7,7 +7,8 @@ import {
export class TUint8Array {
export class TUint8Array {
test() {
test() {
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
this.testMAX();
this.testMAX();
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
...
@@ -34,7 +35,8 @@ export class TUint8Array {
...
@@ -34,7 +35,8 @@ export class TUint8Array {
this.arrayBufferSlice();
this.arrayBufferSlice();
// #endif
// #endif
}
}
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
from() {
from() {
var s = new Set([1, 2, 3]);
var s = new Set([1, 2, 3]);
var unit8 = Uint8Array.from(s);
var unit8 = Uint8Array.from(s);
...
@@ -314,11 +316,11 @@ export class TUint8Array {
...
@@ -314,11 +316,11 @@ export class TUint8Array {
element < 10
element < 10
)
)
expect(res).toEqual(true);
expect(res).toEqual(true);
console.log('uint8',res)
console.log('uint8',
res)
res = positives.some((element : number, index : number, array : Uint8Array) : boolean =>
res = positives.some((element : number, index : number, array : Uint8Array) : boolean =>
element < 0
element < 0
)
)
console.log('uint8',
res)
console.log('uint8',
res)
expect(res).toEqual(false);
expect(res).toEqual(false);
// #END
// #END
}
}
...
...
uni_modules/uts-tests/utssdk/TUInt8ClampedArray.uts
浏览文件 @
ba58c133
...
@@ -7,7 +7,8 @@ import {
...
@@ -7,7 +7,8 @@ import {
export class TUint8ClampedArray {
export class TUint8ClampedArray {
test() {
test() {
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
this.testMAX();
this.testMAX();
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
...
@@ -35,7 +36,8 @@ export class TUint8ClampedArray {
...
@@ -35,7 +36,8 @@ export class TUint8ClampedArray {
// #endif
// #endif
}
}
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
testMAX() {
testMAX() {
let uint8Clamped = new Uint8ClampedArray(16);
let uint8Clamped = new Uint8ClampedArray(16);
uint8Clamped[0] = 255;
uint8Clamped[0] = 255;
...
@@ -291,7 +293,7 @@ export class TUint8ClampedArray {
...
@@ -291,7 +293,7 @@ export class TUint8ClampedArray {
}
}
arrayBufferSlice() {
arrayBufferSlice() {
// #TEST ArrayBuffer.slice
// #TEST ArrayBuffer.slice
let buffer = new ArrayBuffer(16);
let buffer = new ArrayBuffer(16);
let uint8Clamped = new Uint8ClampedArray(buffer);
let uint8Clamped = new Uint8ClampedArray(buffer);
...
...
uni_modules/uts-tests/utssdk/TUint16Array.uts
浏览文件 @
ba58c133
...
@@ -7,7 +7,7 @@ import {
...
@@ -7,7 +7,7 @@ import {
export class TUint16Array {
export class TUint16Array {
test() {
test() {
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
this.testuint16();
this.testuint16();
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
...
@@ -35,7 +35,7 @@ export class TUint16Array {
...
@@ -35,7 +35,7 @@ export class TUint16Array {
// #endif
// #endif
}
}
// #if
ndef APP-IOS
// #if
def (UNI-APP-X && APP-ANDROID) || WEB
testuint16() {
testuint16() {
let uint16 = new Uint16Array(2);
let uint16 = new Uint16Array(2);
uint16[0] = 42;
uint16[0] = 42;
...
@@ -305,7 +305,7 @@ export class TUint16Array {
...
@@ -305,7 +305,7 @@ export class TUint16Array {
}
}
arrayBufferSlice() {
arrayBufferSlice() {
// #TEST Uint16Array.arrayBufferSlice
// #TEST Uint16Array.arrayBufferSlice
let buffer = new ArrayBuffer(16);
let buffer = new ArrayBuffer(16);
let uint16 = new Uint16Array(buffer);
let uint16 = new Uint16Array(buffer);
...
@@ -316,7 +316,7 @@ export class TUint16Array {
...
@@ -316,7 +316,7 @@ export class TUint16Array {
let sliced = new Uint16Array(res);
let sliced = new Uint16Array(res);
expect(sliced[0]).toEqual(42);
expect(sliced[0]).toEqual(42);
// #END
// #END
}
}
testSome() {
testSome() {
// #TEST Uint16Array.some
// #TEST Uint16Array.some
...
@@ -334,5 +334,4 @@ export class TUint16Array {
...
@@ -334,5 +334,4 @@ export class TUint16Array {
// #END
// #END
}
}
// #endif
// #endif
}
}
\ No newline at end of file
uni_modules/uts-tests/utssdk/TUint32Array.uts
浏览文件 @
ba58c133
...
@@ -7,7 +7,8 @@ import {
...
@@ -7,7 +7,8 @@ import {
export class TUint32Array {
export class TUint32Array {
test() {
test() {
// #ifndef APP-IOS
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
this.testuint32();
this.testuint32();
this.testConstructor();
this.testConstructor();
this.testSet();
this.testSet();
...
@@ -35,7 +36,7 @@ export class TUint32Array {
...
@@ -35,7 +36,7 @@ export class TUint32Array {
// #endif
// #endif
}
}
// #if
ndef APP-IOS
// #if
def (UNI-APP-X && APP-ANDROID) || WEB
testuint32() {
testuint32() {
let uint32 = new Uint32Array(2);
let uint32 = new Uint32Array(2);
uint32[0] = 42;
uint32[0] = 42;
...
@@ -299,7 +300,7 @@ export class TUint32Array {
...
@@ -299,7 +300,7 @@ export class TUint32Array {
}
}
arrayBufferSlice() {
arrayBufferSlice() {
// #TEST ArrayBuffer.slice
// #TEST ArrayBuffer.slice
let buffer = new ArrayBuffer(16);
let buffer = new ArrayBuffer(16);
let uint32 = new Uint32Array(buffer);
let uint32 = new Uint32Array(buffer);
...
@@ -310,7 +311,7 @@ export class TUint32Array {
...
@@ -310,7 +311,7 @@ export class TUint32Array {
let sliced = new Uint32Array(res);
let sliced = new Uint32Array(res);
expect(sliced[1]).toEqual(42);
expect(sliced[1]).toEqual(42);
// #END
// #END
}
}
testSome() {
testSome() {
// #TEST Uint32Array.some
// #TEST Uint32Array.some
...
...
uni_modules/uts-tests/utssdk/index.uts
浏览文件 @
ba58c133
...
@@ -41,7 +41,10 @@ export function runTests() : UTSJSONObject {
...
@@ -41,7 +41,10 @@ export function runTests() : UTSJSONObject {
const JSONLargeRes = testJSONLarge();
const JSONLargeRes = testJSONLarge();
const consoleRes = testConsole();
const consoleRes = testConsole();
const UTSJSONObjectRes = testUTSJSONObject();
const UTSJSONObjectRes = testUTSJSONObject();
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
const ArrayBufferRes = testArrayBuffer();
const ArrayBufferRes = testArrayBuffer();
// #endif
const NativeCodeRes = testNativeCode();
const NativeCodeRes = testNativeCode();
return {
return {
Array: ArrayRes,
Array: ArrayRes,
...
@@ -62,7 +65,9 @@ export function runTests() : UTSJSONObject {
...
@@ -62,7 +65,9 @@ export function runTests() : UTSJSONObject {
Type: TypeRes,
Type: TypeRes,
console:consoleRes,
console:consoleRes,
UTSJSONObject:UTSJSONObjectRes,
UTSJSONObject:UTSJSONObjectRes,
// #ifdef (UNI-APP-X && APP-ANDROID) || WEB
ArrayBuffer:ArrayBufferRes,
ArrayBuffer:ArrayBufferRes,
// #endif
NativeCode:NativeCodeRes
NativeCode:NativeCodeRes
}
}
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录