[svn] commit: r448 - /branches/jinmei-dnsrrparams/src/lib/dns/cpp/exceptions_unittest.cc

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Jan 12 20:50:31 UTC 2010


Author: jinmei
Date: Tue Jan 12 20:50:30 2010
New Revision: 448

Log:
style: use camel names for function-like things

Modified:
    branches/jinmei-dnsrrparams/src/lib/dns/cpp/exceptions_unittest.cc

Modified: branches/jinmei-dnsrrparams/src/lib/dns/cpp/exceptions_unittest.cc
==============================================================================
--- branches/jinmei-dnsrrparams/src/lib/dns/cpp/exceptions_unittest.cc (original)
+++ branches/jinmei-dnsrrparams/src/lib/dns/cpp/exceptions_unittest.cc Tue Jan 12 20:50:30 2010
@@ -31,7 +31,7 @@
     const char* teststring;
 };
 
-TEST_F(ExceptionTest, BasicMethods) {
+TEST_F(ExceptionTest, basicMethods) {
     try {
         dns_throw(Exception, teststring);
     } catch (Exception& ex) {
@@ -42,7 +42,7 @@
 }
 
 // Test to see if it works as a proper derived class of std::exception.
-TEST_F(ExceptionTest, StdInheritance) {
+TEST_F(ExceptionTest, stdInheritance) {
     try {
         dns_throw(Exception, teststring);
     } catch (std::exception& ex) {




More information about the bind10-changes mailing list