2:把 Studen引入到 Test.m文件中使用;
- (void)testExample
{
//创建两个学生对象,并初始化一些属性;
Student *stu1 = [Student new];
Student *stu2 = [Student new];
stu1.name = @"Mike";
stu1.age = 18;
stu1.isBoy = YES;
stu2.name = @"Lisa";
stu2.age = 18;
stu2.isBoy = NO;
//测试 是否为 nil
Student *stu3 = [Student new];
stu3.isBoy = YES;
//当姓名为nil时,错误会提示,并显示后面的log
XCTAssertNotNil(stu3.name, @"学生3的姓名不应该为空");
}

  3:XCTAssertTrue和XCTAssertFalse

  4:XCTAssertEqual使用

  5:你可以建立自己的测试类 ,但要继承 XCTestCase; 并且里面测试方法要是 - (void)test 且以 test开头的;当没有错误 的时候,会全部变成绿色;

  控制台会打印信息

  6:还有关于 TDD 测试驱动开发,请谷歌之!