@interface SchoolTest : XCTestCase
@end

@implementation SchoolTest

- (void)setUp {
  [super setUp];
  ...
}

- (void)tearDown {
  ...
  [super tearDown];
}

- (void)testSomeFunc {
  // how can I access the static variable 'COURSE_NAME'
  // in School implementation file?
}