Print working message for patience

This commit is contained in:
2024-11-14 07:40:27 +09:00
parent d413d36a9d
commit 36248e8040
2 changed files with 11 additions and 10 deletions

View File

@@ -246,6 +246,7 @@ extension KissConsole {
}
func collectCandleMinuteFiles(productNo: String?, year: String?, month: String?, day: String?) -> [String: [URL]] {
print("Collecting candle csv for \(productNo ?? "all") at \(year ?? "")\(month ?? "")\(day ?? "") .....")
guard let enumerator = subPathForProduct(productNo: productNo) else {
return [:]
}

View File

@@ -7,20 +7,20 @@
import Foundation
#if false
KissConsole().run()
#if true
KissConsole().run()
#else
import KissMe
import KissMe
func runTests() {
let tests = DB1_CandleData_Tests()
tests.runTests()
}
runTests()
#endif
//test_get_websocket_key_and_contact_price()
//test_get_websocket_key_and_asking_price()
//test_parse_contact_price_response()
//test_websocket_dump_data()
//test_auction()
func runTests() {
let tests = DB1_CandleData_Tests()
tests.runTests()
}
runTests()
#endif