Skip to content

Commit 2593782

Browse files
committed
Renamed tests
1 parent 0386def commit 2593782

19 files changed

+503
-47
lines changed

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.DS_Store
2+
*.swp
3+
*~.nib
4+
5+
build/
6+
7+
*.pbxuser
8+
*.perspective
9+
*.perspectivev3
10+
11+
xcuserdata

libCronExpression.xcodeproj/project.pbxproj

+52-32
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
B310809913FD3E5F00D67AC4 /* MonthFieldTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B310809813FD3E5F00D67AC4 /* MonthFieldTest.m */; };
11+
B310809C13FD42F300D67AC4 /* CronExpressionTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B310809B13FD42F300D67AC4 /* CronExpressionTest.m */; };
12+
B310809F13FD431A00D67AC4 /* FieldTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B310809E13FD431A00D67AC4 /* FieldTest.m */; };
1013
B3CF23BF13F7A1FF00A4E532 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B3CF23BE13F7A1FF00A4E532 /* Foundation.framework */; };
1114
B3CF23CD13F7A1FF00A4E532 /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B3CF23CC13F7A1FF00A4E532 /* SenTestingKit.framework */; };
1215
B3CF23CF13F7A1FF00A4E532 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B3CF23CE13F7A1FF00A4E532 /* UIKit.framework */; };
@@ -32,13 +35,13 @@
3235
B3CF241113F7A2D000A4E532 /* MonthField.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF23FE13F7A2D000A4E532 /* MonthField.m */; };
3336
B3CF241213F7A2D000A4E532 /* YearField.h in Headers */ = {isa = PBXBuildFile; fileRef = B3CF23FF13F7A2D000A4E532 /* YearField.h */; settings = {ATTRIBUTES = (Private, ); }; };
3437
B3CF241313F7A2D000A4E532 /* YearField.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF240013F7A2D000A4E532 /* YearField.m */; };
35-
B3CF241813F7A49400A4E532 /* YearFieldTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF241513F7A3B700A4E532 /* YearFieldTests.m */; };
36-
B3CF241913F7A49F00A4E532 /* YearFieldTests.h in Resources */ = {isa = PBXBuildFile; fileRef = B3CF241413F7A3B700A4E532 /* YearFieldTests.h */; };
38+
B3CF241813F7A49400A4E532 /* YearFieldTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF241513F7A3B700A4E532 /* YearFieldTest.m */; };
39+
B3CF241913F7A49F00A4E532 /* YearFieldTest.h in Resources */ = {isa = PBXBuildFile; fileRef = B3CF241413F7A3B700A4E532 /* YearFieldTest.h */; };
3740
B3CF241C13F7A88500A4E532 /* MinutesFieldTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF241B13F7A88500A4E532 /* MinutesFieldTest.m */; };
38-
B3CF241F13F7A92C00A4E532 /* HoursFieldTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF241E13F7A92C00A4E532 /* HoursFieldTests.m */; };
39-
B3CF242213F7A99700A4E532 /* FieldFactoryTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF242113F7A99700A4E532 /* FieldFactoryTests.m */; };
40-
B3CF242513F7C4EB00A4E532 /* DayOfWeekFieldTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF242413F7C4EB00A4E532 /* DayOfWeekFieldTests.m */; };
41-
B3CF242813F7F02800A4E532 /* DayOfMonthFieldTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF242713F7F02700A4E532 /* DayOfMonthFieldTests.m */; };
41+
B3CF241F13F7A92C00A4E532 /* HoursFieldTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF241E13F7A92C00A4E532 /* HoursFieldTest.m */; };
42+
B3CF242213F7A99700A4E532 /* FieldFactoryTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF242113F7A99700A4E532 /* FieldFactoryTest.m */; };
43+
B3CF242513F7C4EB00A4E532 /* DayOfWeekFieldTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF242413F7C4EB00A4E532 /* DayOfWeekFieldTest.m */; };
44+
B3CF242813F7F02800A4E532 /* DayOfMonthFieldTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B3CF242713F7F02700A4E532 /* DayOfMonthFieldTest.m */; };
4245
/* End PBXBuildFile section */
4346

4447
/* Begin PBXContainerItemProxy section */
@@ -52,6 +55,12 @@
5255
/* End PBXContainerItemProxy section */
5356

5457
/* Begin PBXFileReference section */
58+
B310809713FD3E5F00D67AC4 /* MonthFieldTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthFieldTest.h; sourceTree = "<group>"; };
59+
B310809813FD3E5F00D67AC4 /* MonthFieldTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MonthFieldTest.m; sourceTree = "<group>"; };
60+
B310809A13FD42F300D67AC4 /* CronExpressionTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CronExpressionTest.h; sourceTree = "<group>"; };
61+
B310809B13FD42F300D67AC4 /* CronExpressionTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CronExpressionTest.m; sourceTree = "<group>"; };
62+
B310809D13FD431A00D67AC4 /* FieldTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FieldTest.h; sourceTree = "<group>"; };
63+
B310809E13FD431A00D67AC4 /* FieldTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FieldTest.m; sourceTree = "<group>"; };
5564
B3CF23BB13F7A1FF00A4E532 /* liblibCronExpression.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = liblibCronExpression.a; sourceTree = BUILT_PRODUCTS_DIR; };
5665
B3CF23BE13F7A1FF00A4E532 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
5766
B3CF23C213F7A1FF00A4E532 /* libCronExpression-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "libCronExpression-Prefix.pch"; sourceTree = "<group>"; };
@@ -80,18 +89,18 @@
8089
B3CF23FE13F7A2D000A4E532 /* MonthField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MonthField.m; sourceTree = "<group>"; };
8190
B3CF23FF13F7A2D000A4E532 /* YearField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YearField.h; sourceTree = "<group>"; };
8291
B3CF240013F7A2D000A4E532 /* YearField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YearField.m; sourceTree = "<group>"; };
83-
B3CF241413F7A3B700A4E532 /* YearFieldTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YearFieldTests.h; sourceTree = "<group>"; };
84-
B3CF241513F7A3B700A4E532 /* YearFieldTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YearFieldTests.m; sourceTree = "<group>"; };
92+
B3CF241413F7A3B700A4E532 /* YearFieldTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YearFieldTest.h; sourceTree = "<group>"; };
93+
B3CF241513F7A3B700A4E532 /* YearFieldTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YearFieldTest.m; sourceTree = "<group>"; };
8594
B3CF241A13F7A88500A4E532 /* MinutesFieldTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MinutesFieldTest.h; sourceTree = "<group>"; };
8695
B3CF241B13F7A88500A4E532 /* MinutesFieldTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MinutesFieldTest.m; sourceTree = "<group>"; };
87-
B3CF241D13F7A92C00A4E532 /* HoursFieldTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HoursFieldTests.h; sourceTree = "<group>"; };
88-
B3CF241E13F7A92C00A4E532 /* HoursFieldTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HoursFieldTests.m; sourceTree = "<group>"; };
89-
B3CF242013F7A99700A4E532 /* FieldFactoryTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FieldFactoryTests.h; sourceTree = "<group>"; };
90-
B3CF242113F7A99700A4E532 /* FieldFactoryTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FieldFactoryTests.m; sourceTree = "<group>"; };
91-
B3CF242313F7C4EB00A4E532 /* DayOfWeekFieldTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DayOfWeekFieldTests.h; sourceTree = "<group>"; };
92-
B3CF242413F7C4EB00A4E532 /* DayOfWeekFieldTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DayOfWeekFieldTests.m; sourceTree = "<group>"; };
93-
B3CF242613F7F02700A4E532 /* DayOfMonthFieldTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DayOfMonthFieldTests.h; sourceTree = "<group>"; };
94-
B3CF242713F7F02700A4E532 /* DayOfMonthFieldTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DayOfMonthFieldTests.m; sourceTree = "<group>"; };
96+
B3CF241D13F7A92C00A4E532 /* HoursFieldTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HoursFieldTest.h; sourceTree = "<group>"; };
97+
B3CF241E13F7A92C00A4E532 /* HoursFieldTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HoursFieldTest.m; sourceTree = "<group>"; };
98+
B3CF242013F7A99700A4E532 /* FieldFactoryTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FieldFactoryTest.h; sourceTree = "<group>"; };
99+
B3CF242113F7A99700A4E532 /* FieldFactoryTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FieldFactoryTest.m; sourceTree = "<group>"; };
100+
B3CF242313F7C4EB00A4E532 /* DayOfWeekFieldTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DayOfWeekFieldTest.h; sourceTree = "<group>"; };
101+
B3CF242413F7C4EB00A4E532 /* DayOfWeekFieldTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DayOfWeekFieldTest.m; sourceTree = "<group>"; };
102+
B3CF242613F7F02700A4E532 /* DayOfMonthFieldTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DayOfMonthFieldTest.h; sourceTree = "<group>"; };
103+
B3CF242713F7F02700A4E532 /* DayOfMonthFieldTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DayOfMonthFieldTest.m; sourceTree = "<group>"; };
95104
/* End PBXFileReference section */
96105

97106
/* Begin PBXFrameworksBuildPhase section */
@@ -186,18 +195,24 @@
186195
B3CF23D613F7A1FF00A4E532 /* libCronExpressionTests */ = {
187196
isa = PBXGroup;
188197
children = (
189-
B3CF242613F7F02700A4E532 /* DayOfMonthFieldTests.h */,
190-
B3CF242713F7F02700A4E532 /* DayOfMonthFieldTests.m */,
191-
B3CF242313F7C4EB00A4E532 /* DayOfWeekFieldTests.h */,
192-
B3CF242413F7C4EB00A4E532 /* DayOfWeekFieldTests.m */,
193-
B3CF242013F7A99700A4E532 /* FieldFactoryTests.h */,
194-
B3CF242113F7A99700A4E532 /* FieldFactoryTests.m */,
195-
B3CF241D13F7A92C00A4E532 /* HoursFieldTests.h */,
196-
B3CF241E13F7A92C00A4E532 /* HoursFieldTests.m */,
198+
B310809A13FD42F300D67AC4 /* CronExpressionTest.h */,
199+
B310809B13FD42F300D67AC4 /* CronExpressionTest.m */,
200+
B3CF242613F7F02700A4E532 /* DayOfMonthFieldTest.h */,
201+
B3CF242713F7F02700A4E532 /* DayOfMonthFieldTest.m */,
202+
B3CF242313F7C4EB00A4E532 /* DayOfWeekFieldTest.h */,
203+
B3CF242413F7C4EB00A4E532 /* DayOfWeekFieldTest.m */,
204+
B310809D13FD431A00D67AC4 /* FieldTest.h */,
205+
B310809E13FD431A00D67AC4 /* FieldTest.m */,
206+
B3CF242013F7A99700A4E532 /* FieldFactoryTest.h */,
207+
B3CF242113F7A99700A4E532 /* FieldFactoryTest.m */,
208+
B3CF241D13F7A92C00A4E532 /* HoursFieldTest.h */,
209+
B3CF241E13F7A92C00A4E532 /* HoursFieldTest.m */,
197210
B3CF241A13F7A88500A4E532 /* MinutesFieldTest.h */,
198211
B3CF241B13F7A88500A4E532 /* MinutesFieldTest.m */,
199-
B3CF241413F7A3B700A4E532 /* YearFieldTests.h */,
200-
B3CF241513F7A3B700A4E532 /* YearFieldTests.m */,
212+
B310809713FD3E5F00D67AC4 /* MonthFieldTest.h */,
213+
B310809813FD3E5F00D67AC4 /* MonthFieldTest.m */,
214+
B3CF241413F7A3B700A4E532 /* YearFieldTest.h */,
215+
B3CF241513F7A3B700A4E532 /* YearFieldTest.m */,
201216
B3CF23D713F7A1FF00A4E532 /* Supporting Files */,
202217
);
203218
path = libCronExpressionTests;
@@ -298,7 +313,7 @@
298313
isa = PBXResourcesBuildPhase;
299314
buildActionMask = 2147483647;
300315
files = (
301-
B3CF241913F7A49F00A4E532 /* YearFieldTests.h in Resources */,
316+
B3CF241913F7A49F00A4E532 /* YearFieldTest.h in Resources */,
302317
B3CF23DB13F7A1FF00A4E532 /* InfoPlist.strings in Resources */,
303318
);
304319
runOnlyForDeploymentPostprocessing = 0;
@@ -342,12 +357,15 @@
342357
isa = PBXSourcesBuildPhase;
343358
buildActionMask = 2147483647;
344359
files = (
345-
B3CF241813F7A49400A4E532 /* YearFieldTests.m in Sources */,
360+
B3CF241813F7A49400A4E532 /* YearFieldTest.m in Sources */,
346361
B3CF241C13F7A88500A4E532 /* MinutesFieldTest.m in Sources */,
347-
B3CF241F13F7A92C00A4E532 /* HoursFieldTests.m in Sources */,
348-
B3CF242213F7A99700A4E532 /* FieldFactoryTests.m in Sources */,
349-
B3CF242513F7C4EB00A4E532 /* DayOfWeekFieldTests.m in Sources */,
350-
B3CF242813F7F02800A4E532 /* DayOfMonthFieldTests.m in Sources */,
362+
B3CF241F13F7A92C00A4E532 /* HoursFieldTest.m in Sources */,
363+
B3CF242213F7A99700A4E532 /* FieldFactoryTest.m in Sources */,
364+
B3CF242513F7C4EB00A4E532 /* DayOfWeekFieldTest.m in Sources */,
365+
B3CF242813F7F02800A4E532 /* DayOfMonthFieldTest.m in Sources */,
366+
B310809913FD3E5F00D67AC4 /* MonthFieldTest.m in Sources */,
367+
B310809C13FD42F300D67AC4 /* CronExpressionTest.m in Sources */,
368+
B310809F13FD431A00D67AC4 /* FieldTest.m in Sources */,
351369
);
352370
runOnlyForDeploymentPostprocessing = 0;
353371
};
@@ -486,6 +504,7 @@
486504
B3CF23E413F7A1FF00A4E532 /* Release */,
487505
);
488506
defaultConfigurationIsVisible = 0;
507+
defaultConfigurationName = Release;
489508
};
490509
B3CF23E513F7A1FF00A4E532 /* Build configuration list for PBXNativeTarget "libCronExpressionTests" */ = {
491510
isa = XCConfigurationList;
@@ -494,6 +513,7 @@
494513
B3CF23E713F7A1FF00A4E532 /* Release */,
495514
);
496515
defaultConfigurationIsVisible = 0;
516+
defaultConfigurationName = Release;
497517
};
498518
/* End XCConfigurationList section */
499519
};

libCronExpression.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// CronExpressionTest.h
3+
// libCronExpression
4+
//
5+
// Created by c 4 on 18/08/11.
6+
// Copyright 2011 __MyCompanyName__. All rights reserved.
7+
//
8+
9+
#import <SenTestingKit/SenTestingKit.h>
10+
11+
@interface CronExpressionTest : SenTestCase
12+
13+
@end

0 commit comments

Comments
 (0)