File Coverage

src/panda/uri/socks.h
Criterion Covered Total %
statement 2 3 66.6
branch 1 4 25.0
condition n/a
subroutine n/a
pod n/a
total 3 7 42.8


line stmt bran cond sub pod time code
1             #pragma once
2             #include
3              
4             namespace panda { namespace uri {
5              
6 6 50         struct URI::socks : Strict {
7 2           using Strict::Strict;
8              
9 0 0         static string default_scheme () { return "socks5"; }
10             };
11              
12             }}