| src/panda/uri/ftp.h | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 5 | 6 | 83.3 |
| branch | 3 | 8 | 37.5 |
| condition | n/a | ||
| subroutine | n/a | ||
| pod | n/a | ||
| total | 8 | 14 | 57.1 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | #pragma once | ||||||
| 2 | #include |
||||||
| 3 | |||||||
| 4 | namespace panda { namespace uri { | ||||||
| 5 | |||||||
| 6 | 8 | 50 | struct URI::ftp : Strict |
||||
| 7 | 2 | using Strict |
|||||
| 8 | |||||||
| 9 | 1 | 50 | static string default_scheme () { return "ftp"; } | ||||
| 10 | }; | ||||||
| 11 | |||||||
| 12 | 6 | 50 | struct URI::sftp : Strict |
||||
| 13 | 2 | using Strict |
|||||
| 14 | |||||||
| 15 | 0 | 0 | static string default_scheme () { return "sftp"; } | ||||
| 16 | }; | ||||||
| 17 | |||||||
| 18 | }} |