diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2015-07-28 18:16:39 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2015-07-28 18:27:27 -0400 |
commit | b66e993f1c742518d9b5e93b0d8a5f8255a4127c (patch) | |
tree | 55e6fed05333d2d37f34586726a342ed7f7dbc29 /src/mongo/db/server_parameters_test.cpp | |
parent | 314a22e93f283ab80e650618cbd3ed8babb8510f (diff) | |
download | mongo-b66e993f1c742518d9b5e93b0d8a5f8255a4127c.tar.gz |
SERVER-18579: Clang-Format - reformat code, no comment reflow
Diffstat (limited to 'src/mongo/db/server_parameters_test.cpp')
-rw-r--r-- | src/mongo/db/server_parameters_test.cpp | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/src/mongo/db/server_parameters_test.cpp b/src/mongo/db/server_parameters_test.cpp index 6e74cde215d..bc7dea80e53 100644 --- a/src/mongo/db/server_parameters_test.cpp +++ b/src/mongo/db/server_parameters_test.cpp @@ -35,55 +35,55 @@ namespace mongo { - using std::string; - using std::vector; - - TEST( ServerParameters, Simple1 ) { - int f = 5; - ExportedServerParameter<int> ff( NULL, "ff", &f, true, true ); - ASSERT_EQUALS( "ff" , ff.name() ); - ASSERT_EQUALS( 5, ff.get() ); - - ff.set( 6 ); - ASSERT_EQUALS( 6, ff.get() ); - ASSERT_EQUALS( 6, f ); - - ff.set( BSON( "x" << 7 ).firstElement() ); - ASSERT_EQUALS( 7, ff.get() ); - ASSERT_EQUALS( 7, f ); - - ff.setFromString( "8" ); - ASSERT_EQUALS( 8, ff.get() ); - ASSERT_EQUALS( 8, f ); - - } - - TEST( ServerParameters, Vector1 ) { - vector<string> v; +using std::string; +using std::vector; + +TEST(ServerParameters, Simple1) { + int f = 5; + ExportedServerParameter<int> ff(NULL, "ff", &f, true, true); + ASSERT_EQUALS("ff", ff.name()); + ASSERT_EQUALS(5, ff.get()); + + ff.set(6); + ASSERT_EQUALS(6, ff.get()); + ASSERT_EQUALS(6, f); + + ff.set(BSON("x" << 7).firstElement()); + ASSERT_EQUALS(7, ff.get()); + ASSERT_EQUALS(7, f); + + ff.setFromString("8"); + ASSERT_EQUALS(8, ff.get()); + ASSERT_EQUALS(8, f); +} - ExportedServerParameter< vector<string> > vv( NULL, "vv", &v, true, true ); +TEST(ServerParameters, Vector1) { + vector<string> v; - BSONObj x = BSON( "x" << BSON_ARRAY( "a" << "b" << "c" ) ); - vv.set( x.firstElement() ); + ExportedServerParameter<vector<string>> vv(NULL, "vv", &v, true, true); - ASSERT_EQUALS( 3U, v.size() ); - ASSERT_EQUALS( "a", v[0] ); - ASSERT_EQUALS( "b", v[1] ); - ASSERT_EQUALS( "c", v[2] ); + BSONObj x = BSON("x" << BSON_ARRAY("a" + << "b" + << "c")); + vv.set(x.firstElement()); - BSONObjBuilder b; + ASSERT_EQUALS(3U, v.size()); + ASSERT_EQUALS("a", v[0]); + ASSERT_EQUALS("b", v[1]); + ASSERT_EQUALS("c", v[2]); - OperationContextNoop txn; - vv.append(&txn, b, vv.name()); + BSONObjBuilder b; - BSONObj y = b.obj(); - ASSERT( x.firstElement().woCompare( y.firstElement(), false ) == 0 ); + OperationContextNoop txn; + vv.append(&txn, b, vv.name()); + BSONObj y = b.obj(); + ASSERT(x.firstElement().woCompare(y.firstElement(), false) == 0); - vv.setFromString( "d,e" ); - ASSERT_EQUALS( 2U, v.size() ); - ASSERT_EQUALS( "d", v[0] ); - ASSERT_EQUALS( "e", v[1] ); - } + vv.setFromString("d,e"); + ASSERT_EQUALS(2U, v.size()); + ASSERT_EQUALS("d", v[0]); + ASSERT_EQUALS("e", v[1]); +} } |