上一页 1 2 3 4 5 6 ··· 56 下一页
摘要: 1. 接口 Request URL: http://10.194.109.125/UserHabit/ICSUI/QuickLogin Request Method: POST Status Code: 204 No Content 2. feature 文件 Feature: API test S 阅读全文
posted @ 2023-03-21 10:43 筱筱的春天 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 1. 测试接口 Request URL: http://10.194.109.125/EnvironmentMonitor/ICSQuickLogin Request Method: GET Status Code: 200 OK 2. Test Runner 文件 package APITestC 阅读全文
posted @ 2023-03-21 10:35 筱筱的春天 阅读(19) 评论(0) 推荐(0) 编辑
摘要: import json def print_hi(name): print(f'Hi, {name}') if __name__ == '__main__': print_hi('PyCharm') updateValue = 12345 with open('jsonfile/create_msp 阅读全文
posted @ 2023-03-21 10:30 筱筱的春天 阅读(64) 评论(0) 推荐(0) 编辑
摘要: class Fabonacci(object): def __init__(self, num): #fabonni number self.num = num self.a = 1 self.b = 1 self.current_index = 0 # __iter__ def __iter__( 阅读全文
posted @ 2023-03-21 10:27 筱筱的春天 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-21 20:50 筱筱的春天 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-19 14:49 筱筱的春天 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-19 14:46 筱筱的春天 阅读(429) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/coderinchina/article/details/92036554 第一种 String message = '' for (int i = 0; i < 5; i++) { message += 'Hi ' } 第二种 使用in关键字 a:使用 阅读全文
posted @ 2020-08-18 15:23 筱筱的春天 阅读(3172) 评论(0) 推荐(0) 编辑
摘要: java.util.Properties java.util.Properties是对properties这类配置文件的映射。支持key-value类型和xml类型两种。、 key-value类型的配置文件大略长这样: #打头的是注释行,Properties会忽略注释。允许只有key没有value 阅读全文
posted @ 2020-08-12 11:35 筱筱的春天 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.cnblogs.com/zerotest/p/6910426.html 便于学习 让我们来看看使用采样器的TestSteps(包括request的TestStep)的Assertion功能如何验证TestStep收到传入的响应或请求。在我们深入了解可用的断言之前,让我们 阅读全文
posted @ 2020-07-23 15:02 筱筱的春天 阅读(547) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 56 下一页