@@ -23,7 +23,7 @@ public void LoadsDatabaseSmokeTest (PlatformName platform, int expectedLowerLimi
23
23
var database = importer . Import ( ) ;
24
24
Assert . IsNotNull ( database , $ "null database for { platform } ") ;
25
25
Assert . Less ( expectedLowerLimit , database . Count , $ "Expected at least { expectedLowerLimit } db entries, but got { database . Count } entries.") ;
26
- errors . AssertNoErrors ( "errors importing database." ) ;
26
+ errors . AssertNoErrors ( "importing database." ) ;
27
27
}
28
28
29
29
[ TestCase ( PlatformName . iOS ) ]
@@ -39,7 +39,7 @@ public void HasAtLeastNSObject (PlatformName platform)
39
39
Assert . IsNotNull ( entity , $ "Didn't get an NSObject from database on { platform } ") ;
40
40
Assert . IsTrue ( entity . IsObjCClass , $ "NSObject is not an ObjC class on { platform } . Seriously?") ;
41
41
Assert . IsNotNull ( entity . Type , $ "No type in NSObject on { platform } ") ;
42
- errors . AssertNoErrors ( "errors importing database." ) ;
42
+ errors . AssertNoErrors ( "importing database." ) ;
43
43
}
44
44
45
45
[ Test ]
@@ -50,7 +50,7 @@ public void ExcludesEverything ()
50
50
importer . Excludes . Add ( new PatternMatch ( ".*" ) ) ;
51
51
var database = importer . Import ( ) ;
52
52
Assert . AreEqual ( 0 , database . Count , $ "This was supposed to exclude everything, but we got { database . Count } entries.") ;
53
- errors . AssertNoErrors ( "errors importing database." ) ;
53
+ errors . AssertNoErrors ( "importing database." ) ;
54
54
}
55
55
56
56
@@ -63,7 +63,7 @@ public void ReincludesNSObject()
63
63
importer . Includes . Add ( new PatternMatch ( "Foundation\\ .NSObject" ) ) ;
64
64
var database = importer . Import ( ) ;
65
65
Assert . AreEqual ( 1 , database . Count , $ "This was supposed to exclude everything, but we got { database . Count } entries.") ;
66
- errors . AssertNoErrors ( "errors importing database." ) ;
66
+ errors . AssertNoErrors ( "importing database." ) ;
67
67
}
68
68
69
69
@@ -77,7 +77,7 @@ public void ReincludesFoundation ()
77
77
importer . Includes . Add ( new PatternMatch ( "Foundation\\ ..*" ) ) ;
78
78
var database = importer . Import ( ) ;
79
79
Assert . Less ( 175 , database . Count , $ "This was supposed to exclude everything, but we got { database . Count } entries.") ;
80
- errors . AssertNoErrors ( "errors importing database." ) ;
80
+ errors . AssertNoErrors ( "importing database." ) ;
81
81
}
82
82
83
83
@@ -93,7 +93,7 @@ public void LoadsIUIViewControllerTransitionCoordinator (PlatformName platform)
93
93
Assert . IsNotNull ( entity , $ "Didn't get an IUIViewControllerTransitionCoordinator from database on { platform } ") ;
94
94
Assert . IsTrue ( entity . IsObjCProtocol , $ "NSObject is not an ObjC protocol on { platform } . Seriously?") ;
95
95
Assert . IsNotNull ( entity . Type , $ "No type in IUIViewControllerTransitionCoordinator on { platform } ") ;
96
- errors . AssertNoErrors ( "errors importing database." ) ;
96
+ errors . AssertNoErrors ( "importing database." ) ;
97
97
}
98
98
}
99
99
}
0 commit comments