File Coverage

src/panda/uri/http.h
Criterion Covered Total %
statement 6 6 100.0
branch 2 4 50.0
condition n/a
subroutine n/a
pod n/a
total 8 10 80.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::https : Strict {
7             using Strict = Strict;
8 2           using Strict::Strict;
9              
10 2           static string default_scheme () { return "https"; }
11             };
12              
13 56 50         struct URI::http : Strict {
14             using Strict = Strict;
15 22           using Strict::Strict;
16              
17 2           static string default_scheme () { return "http"; }
18             };
19              
20             }}