File Coverage

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