摘要:
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 阅读全文
摘要:
1. 测试接口 Request URL: http://10.194.109.125/EnvironmentMonitor/ICSQuickLogin Request Method: GET Status Code: 200 OK 2. Test Runner 文件 package APITestC 阅读全文
摘要:
import json def print_hi(name): print(f'Hi, {name}') if __name__ == '__main__': print_hi('PyCharm') updateValue = 12345 with open('jsonfile/create_msp 阅读全文
摘要:
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__( 阅读全文