Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
justauth
JustAuth
提交
050686d8
J
JustAuth
项目概览
justauth
/
JustAuth
1 年多 前同步成功
通知
394
Star
15212
Fork
2708
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
J
JustAuth
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
050686d8
编写于
5年前
作者:
C
Chris Smowton
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add unit tests for me.zhyd.oauth.utils.StringUtils
These tests were written using Diffblue Cover.
上级
05f95b86
master
dependabot/maven/com.alibaba-fastjson-1.2.83
dev
v1.15.6
v1.15.9
1.15.6
1.15.5
1.15.4-alpha
1.15.3-alpha
1.15.2-alpha
v1.16.5
v1.16.4
v1.16.3
v1.16.2
v1.16.1
v1.16.0
v1.15.9
v1.15.8
v1.15.7
v1.15.7-beta.3
v1.15.7-beta.2
v1.15.7-beta.1
v.1.15.1
v1.15.1
v1.14.0
v1.13.2
v1.13.1
v1.13.0
v1.12.0
v1.11.0
v1.10.1
v1.10.0
无相关合并请求
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
93 addition
and
0 deletion
+93
-0
src/test/java/me/zhyd/oauth/utils/StringUtilsTest.java
src/test/java/me/zhyd/oauth/utils/StringUtilsTest.java
+93
-0
未找到文件。
src/test/java/me/zhyd/oauth/utils/StringUtilsTest.java
0 → 100644
浏览文件 @
050686d8
package
me.zhyd.oauth.utils
;
import
org.junit.Assert
;
import
org.junit.Rule
;
import
org.junit.Test
;
import
org.junit.rules.ExpectedException
;
public
class
StringUtilsTest
{
@Rule
public
final
ExpectedException
thrown
=
ExpectedException
.
none
();
@Test
public
void
isEmptyNonEmptyInput
()
{
Assert
.
assertFalse
(
StringUtils
.
isEmpty
(
"non-empty string"
));
}
@Test
public
void
isEmptyEmptyInput
()
{
Assert
.
assertTrue
(
StringUtils
.
isEmpty
(
""
));
}
@Test
public
void
isEmptyInputNull
()
{
Assert
.
assertTrue
(
StringUtils
.
isEmpty
(
null
));
}
@Test
public
void
isNotEmptyNonEmptyInput
()
{
Assert
.
assertTrue
(
StringUtils
.
isNotEmpty
(
"non-empty string"
));
}
@Test
public
void
isNotEmptyEmptyInput
()
{
Assert
.
assertFalse
(
StringUtils
.
isNotEmpty
(
""
));
}
@Test
public
void
isNotEmptyInputNull
()
{
Assert
.
assertFalse
(
StringUtils
.
isNotEmpty
(
null
));
}
@Test
public
void
appendIfNotContainAppendedStringNotPresent
()
{
// (Check the case where appendStr doesn't occur in str)
final
String
str
=
"Prefix "
;
final
String
appendStr
=
"suffix"
;
final
String
otherwise
=
"should be discarded"
;
final
String
result
=
StringUtils
.
appendIfNotContain
(
str
,
appendStr
,
otherwise
);
Assert
.
assertEquals
(
"Prefix suffix"
,
result
);
}
@Test
public
void
appendIfNotContainAppendedStringPresent
()
{
// (Check the case where appendStr occurs in str)
final
String
str
=
"Prefix "
;
final
String
appendStr
=
"Prefix"
;
final
String
otherwise
=
"should be appended"
;
final
String
result
=
StringUtils
.
appendIfNotContain
(
str
,
appendStr
,
otherwise
);
Assert
.
assertEquals
(
"Prefix should be appended"
,
result
);
}
@Test
public
void
appendIfNotContainEmptyString
()
{
// (Check the special-case for str being empty)
final
String
str
=
""
;
final
String
appendStr
=
"should not be appended"
;
final
String
otherwise
=
"should also not be appended"
;
final
String
result
=
StringUtils
.
appendIfNotContain
(
str
,
appendStr
,
otherwise
);
Assert
.
assertEquals
(
""
,
result
);
}
@Test
public
void
appendIfNotContainAppendingEmptyString
()
{
// (Check the special-case for appendStr being empty)
final
String
str
=
"should be kept"
;
final
String
appendStr
=
""
;
final
String
otherwise
=
"should also not be appended"
;
final
String
result
=
StringUtils
.
appendIfNotContain
(
str
,
appendStr
,
otherwise
);
Assert
.
assertEquals
(
"should be kept"
,
result
);
}
}
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录