Skip to content
This repository has been archived by the owner on May 2, 2021. It is now read-only.

Commit

Permalink
#10 move to hamcrest 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tae Won Ha committed Sep 29, 2013
1 parent e0dfd2a commit 0f00cfd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Qmind.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
4B992F1E173545DD00C5844E /* Sparkle.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4B992F1A173545CD00C5844E /* Sparkle.framework */; };
4B9D981016878B0F00222D03 /* QMCellSizeManagerTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 1929B209E6C81B9C03DE0505 /* QMCellSizeManagerTest.m */; };
4B9DE3341569367500AAF5C1 /* QmindIcon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 4B9DE3331569367500AAF5C1 /* QmindIcon.icns */; };
4BA3F92817F8265C00EB5A81 /* fontawesome-webfont.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4B521D9B17A54EB600153278 /* fontawesome-webfont.ttf */; };
4BA52C2B14FA52F5000EB8E5 /* cell-population-test.mm in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4BFCD7AC14F3E32A00850952 /* cell-population-test.mm */; };
4BB45FDF173647C400B2B15D /* QMAppSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B85653514E46D6800C6FF26 /* QMAppSettings.m */; };
4BB45FE0173647C400B2B15D /* QMTextLayoutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B85653514E46D6800C6FF41 /* QMTextLayoutManager.m */; };
Expand Down Expand Up @@ -1154,6 +1155,7 @@
buildActionMask = 2147483647;
files = (
4B396DD614F7E446000C7B36 /* dummy.pdf in Resources */,
4BA3F92817F8265C00EB5A81 /* fontawesome-webfont.ttf in Resources */,
4BFCD7AC14F3E32A0085093B /* IconsFreeMindToQmind.plist in Resources */,
4BDC9D921524EEAD008CEB8E /* Localizable.strings in Resources */,
);
Expand Down
2 changes: 1 addition & 1 deletion QmindTest/DocumentTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ - (void)testDeleteAllIcons {
[NODE(1) addObjectInIcons:@"icon3"];

[doc deleteAllIconsOfItem:NODE(1)];
assertThat([NODE(1) icons], is(empty()));
assertThat([NODE(1) icons], isEmpty());
}

- (void)testItemNewlyCreated {
Expand Down
4 changes: 2 additions & 2 deletions QmindTest/QMCellTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ - (void)testInitAndBasics {
assertThat(cell.view, is(view));
assertThat(cell.parent, is(parentCell));
assertThat(cell.children, isNot(nilValue()));
assertThat(cell.children, is(empty()));
assertThat(cell.children, isEmpty());
assertThat(cell.stringValue, is(@"test"));
assertThat(@(cell.isLeaf), isYes);
assertThat(@(cell.isFolded), isYes);
Expand All @@ -337,7 +337,7 @@ - (void)testInitAndBasicsLeft {
assertThat(cell.view, is(view));
assertThat(cell.parent, is(parentCell));
assertThat(cell.children, isNot(nilValue()));
assertThat(cell.children, is(empty()));
assertThat(cell.children, isEmpty());
assertThat(cell.stringValue, is(@"test"));
assertThat(@(cell.isLeaf), isYes);
assertThat(@(cell.isFolded), isYes);
Expand Down

0 comments on commit 0f00cfd

Please sign in to comment.