Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
206c716f
提交
206c716f
authored
5月 08, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add more tests of ValueArray.convertPrecision()
上级
dd39e633
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
29 行增加
和
0 行删除
+29
-0
TestBase.java
h2/src/test/org/h2/test/TestBase.java
+13
-0
TestValue.java
h2/src/test/org/h2/test/unit/TestValue.java
+16
-0
没有找到文件。
h2/src/test/org/h2/test/TestBase.java
浏览文件 @
206c716f
...
@@ -849,6 +849,19 @@ public abstract class TestBase {
...
@@ -849,6 +849,19 @@ public abstract class TestBase {
assertFalse
(
message
,
rs1
.
next
());
assertFalse
(
message
,
rs1
.
next
());
}
}
/**
* Check if two objects are the same, and if not throw an exception.
*
* @param expected the expected value
* @param actual the actual value
* @throws AssertionError if the objects are not the same
*/
public
void
assertSame
(
Object
expected
,
Object
actual
)
{
if
(
expected
!=
actual
)
{
fail
(
" expected: "
+
expected
+
" != actual: "
+
actual
);
}
}
/**
/**
* Check if the first value is larger or equal than the second value, and if
* Check if the first value is larger or equal than the second value, and if
* not throw an exception.
* not throw an exception.
...
...
h2/src/test/org/h2/test/unit/TestValue.java
浏览文件 @
206c716f
...
@@ -61,6 +61,7 @@ public class TestValue extends TestBase {
...
@@ -61,6 +61,7 @@ public class TestValue extends TestBase {
testCastTrim
();
testCastTrim
();
testValueResultSet
();
testValueResultSet
();
testDataType
();
testDataType
();
testArray
();
testUUID
();
testUUID
();
testDouble
(
false
);
testDouble
(
false
);
testDouble
(
true
);
testDouble
(
true
);
...
@@ -330,6 +331,21 @@ public class TestValue extends TestBase {
...
@@ -330,6 +331,21 @@ public class TestValue extends TestBase {
assertEquals
(
123123123
,
ts
.
getNanos
());
assertEquals
(
123123123
,
ts
.
getNanos
());
}
}
private
void
testArray
()
{
ValueArray
src
=
ValueArray
.
get
(
new
Value
[]
{
ValueString
.
get
(
"1"
),
ValueString
.
get
(
"22"
),
ValueString
.
get
(
"333"
)});
assertEquals
(
6
,
src
.
getPrecision
());
assertSame
(
src
,
src
.
convertPrecision
(
5
,
false
));
assertEquals
(
src
,
src
.
convertPrecision
(
6
,
true
));
ValueArray
exp
=
ValueArray
.
get
(
new
Value
[]
{
ValueString
.
get
(
"1"
),
ValueString
.
get
(
"22"
),
ValueString
.
get
(
"33"
)});
assertEquals
(
exp
,
src
.
convertPrecision
(
5
,
true
));
exp
=
ValueArray
.
get
(
new
Value
[]
{
ValueString
.
get
(
"1"
),
ValueString
.
get
(
"22"
)});
assertEquals
(
exp
,
src
.
convertPrecision
(
3
,
true
));
exp
=
ValueArray
.
get
(
new
Value
[
0
]);
assertEquals
(
exp
,
src
.
convertPrecision
(
0
,
true
));
}
private
void
testUUID
()
{
private
void
testUUID
()
{
long
maxHigh
=
0
,
maxLow
=
0
,
minHigh
=
-
1L
,
minLow
=
-
1L
;
long
maxHigh
=
0
,
maxLow
=
0
,
minHigh
=
-
1L
,
minLow
=
-
1L
;
for
(
int
i
=
0
;
i
<
100
;
i
++)
{
for
(
int
i
=
0
;
i
<
100
;
i
++)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论