- 设置google pay订阅商品
- 设置google cloud project,并关联到Google pay
- https://juejin.cn/post/7376532114106236979
- 配置主题的pub/sub publisher
- google-play-developer-notifications@system.gserviceaccount.com
- 创收设置
开篇课程
gt: greater than 大于
gte: greater than or equal 大于等于
lt: less than 小于
lte: less than or equal 小于等于
sourcetree跳过登录的方法
sourcetree是款免费的Git可视化工具,对于版本库较小的Git项目进行管理非常方便。但是sourcetree安装后第一次使用需要登录bitbucket帐号(最新版),由于某些原因登录帐号有困难,下面介绍一下如果跳过登录。
1、安装sourcetree
下载地址:https://www.sourcetreeapp.com/
2、安装之后,转到用户本地文件夹下的 SourceTree 目录,没有则新建
%LocalAppData%\Atlassian\SourceTree\
3、新建 accounts.json 文件
4、输入以下内家保存即可
[
{
“$id”: “1”,
“$type”: “SourceTree.Api.Host.Identity.Model.IdentityAccount, SourceTree.Api.Host.Identity”,
“Authenticate”: true,
“HostInstance”: {
“$id”: “2”,
“$type”: “SourceTree.Host.Atlassianaccount.AtlassianAccountInstance, SourceTree.Host.AtlassianAccount”,
“Host”: {
“$id”: “3”,
“$type”: “SourceTree.Host.Atlassianaccount.AtlassianAccountHost, SourceTree.Host.AtlassianAccount”,
“Id”: “atlassian account”
},
“BaseUrl”: “https://id.atlassian.com/”
},
“Credentials”: {
“$id”: “4”,
“$type”: “SourceTree.Model.BasicAuthCredentials, SourceTree.Api.Account”,
“Username”: “”,
“Email”: null
},
“IsDefault”: false
}
]
5、再次打开sourcetree不再提示登录
1.冒烟测试:
简单可理解为与测试,为了在正式提交测试时进行简单的测试,避免造成一连串的错误,最初的冒烟测试有人说的是用来测试管道的,往管道内垂鼓入烟,看有没有泄露;
2.回归测试:
每次修复代码都需要进行测试,称为回归测试,比如现在测试部门测试的版本是n,发现了m个bug,然后由QA部门提交给开发部门,开发部门就会进行fixbug,解决完提交给QA部门时的版本记录为 n+1 版本,在(n)<--->(n+1)版本之间是存在很大的不稳定性的,所以是一种退步的状态,所以就称为回归测试;
3.功能测试:
功能测试也称黑盒测试、行为测试,通常是用来发现没有bug的bug的,只需关注输入输出值是否符合用户要求。