thrift/test/ReflectionTest.cpp
David Reiss 2a4bfd6d0c Clean up the unit tests.
- Make Python tests cwd-agnostic.
- Use boost::test.
- Add a benchmark.
- Use a library to clean up test/Makefile.am.


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665640 13f79535-47bb-0310-9956-ffa450edef68
2008-04-07 23:45:00 +00:00

20 lines
602 B
C++

#include <iostream>
#include "gen-cpp/PartiallyReflectable.h"
#include "gen-cpp/Service.h"
#include "../lib/cpp/src/protocol/TDebugProtocol.h"
int main() {
using std::cout;
using std::endl;
facebook::thrift::reflection::limited::Service srv1;
thrift::test::debug::PartiallyReflectableIf::getStaticLimitedReflection(srv1);
cout << facebook::thrift::ThriftDebugString(srv1) << endl << endl;
facebook::thrift::reflection::limited::Service srv2;
test::stress::ServiceIf::getStaticLimitedReflection(srv2);
cout << facebook::thrift::ThriftDebugString(srv2) << endl << endl;
return 0;
}