* 設定ファイルからcookie情報を読み込み済みのインスタンスを生成
()
| 61 | * 設定ファイルからcookie情報を読み込み済みのインスタンスを生成 |
| 62 | */ |
| 63 | static async createLoadedInstance(): Promise<Cookie> { |
| 64 | const cookie = new Cookie(); |
| 65 | await cookie.loadConfigFile(); |
| 66 | return cookie; |
| 67 | } |
| 68 | |
| 69 | constructor() { |
| 70 | this.cookies = []; |
nothing calls this directly
no test coverage detected