diff --git a/Tests/base/NSString/NSString_tests.h b/Tests/base/NSString/NSString_tests.h index a038a3897..83f6f7f7c 100644 --- a/Tests/base/NSString/NSString_tests.h +++ b/Tests/base/NSString/NSString_tests.h @@ -10,11 +10,6 @@ Test whether a class is a working concrete subclass of NSString. This file should be included _once_ in a test that wants to test a particular class. */ -/* -This is the main entry point to this file. Call it with a class that's -supposed to be a concrete NSString subclass. -*/ -void TestNSStringClass(Class stringClass); #import "Testing.h" @@ -23,6 +18,12 @@ void TestNSStringClass(Class stringClass); #import #import +/* +This is the main entry point to this file. Call it with a class that's +supposed to be a concrete NSString subclass. +*/ +void TestNSStringClass(Class stringClass); + /* Solaris, in particular, can't handle a NULL string in a printf statement */ #define FORMAT_STRING(str) ((str) ? str : "NULL")