src/panda/uri/ftp.h | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 5 | 6 | 83.3 |
branch | 2 | 4 | 50.0 |
condition | n/a | ||
subroutine | n/a | ||
pod | n/a | ||
total | 7 | 10 | 70.0 |
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 | 2 | static string default_scheme () { return "ftp"; } | |||||
10 | }; | ||||||
11 | |||||||
12 | 6 | 50 | struct URI::sftp : Strict |
||||
13 | 2 | using Strict |
|||||
14 | |||||||
15 | 0 | static string default_scheme () { return "sftp"; } | |||||
16 | }; | ||||||
17 | |||||||
18 | }} |