我正在尝试进一步提升我在 TDD 方面的经验,并且我想知道如何检查一个属性是否存在于一个类中。具体来说,我想确保该对象有一个双命名的累加器。
//
// CSCalculatorModel.h
// Calculator
//
#import <Foundation/Foundation.h>
@interface CSCalculatorModel : NSObject
@property (nonatomic) double accumulator;
@end
我知道我可以对对象使用如下测试,但是如何测试 C 标量?
- (void)testExample
{
XCTAssertNotNil(calculatorClass.accumulator, @"Accumulator property does not exist on calculator class");
}