我有一个声明字典标签的类
这是在 FirstClass 类中声明的
-(NSDictionary *)getTags{
return tags;
}
在单元测试中
我创建了 ocUnit 测试的 FirstClassTest 类
包括#import“FirstClass.h”
-(void)setUP{
[super setUp];
// Allocations the class
_firstClass = [[FirstClass alloc]init];
}
-(void)tearDown{
_firstClass =nil;
[super tearDown];
}
-(void)testDictationGetValue{
// Need to write Unit test for that class
[_firstClass getTags];
}
这是我第一次写单元测试!谁能指导我编写正确的单元测试用例
@All 提前致谢