summaryrefslogtreecommitdiffabout
path: root/test
Unidiff
Diffstat (limited to 'test') (more/less context) (ignore whitespace changes)
-rw-r--r--test/idiscover.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/idiscover.cc b/test/idiscover.cc
index 44df9ce..4b1e90c 100644
--- a/test/idiscover.cc
+++ b/test/idiscover.cc
@@ -1,20 +1,21 @@
1#include <iostream> 1#include <iostream>
2#include <stdexcept> 2#include <stdexcept>
3#include <iterator> 3#include <iterator>
4#include <algorithm> 4#include <algorithm>
5using namespace std; 5using namespace std;
6#include <opkele/exception.h> 6#include <opkele/exception.h>
7#include <opkele/discovery.h> 7#include <opkele/discovery.h>
8#include <opkele/util.h> 8#include <opkele/util.h>
9#include <opkele/util-internal.h>
9 10
10namespace opkele { 11namespace opkele {
11 ostream& operator<<(ostream& o,const opkele::openid_endpoint_t& oep) { 12 ostream& operator<<(ostream& o,const opkele::openid_endpoint_t& oep) {
12 o 13 o
13 << " URI: " << oep.uri << endl 14 << " URI: " << oep.uri << endl
14 << " Claimed ID: " << oep.claimed_id << endl 15 << " Claimed ID: " << oep.claimed_id << endl
15 << " Local ID: " << oep.local_id << endl; 16 << " Local ID: " << oep.local_id << endl;
16 return o; 17 return o;
17 } 18 }
18} 19}
19 20
20int main(int argc,char **argv) { 21int main(int argc,char **argv) {