Skip to content

Commit a8a20f8

Browse files
committed
Merge pull request #313 from addoshi/master
Setup basic tests, Travis CI and Coveralls
2 parents a9d6434 + 1894c18 commit a8a20f8

File tree

10 files changed

+464
-2
lines changed

10 files changed

+464
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ profile
77
*.moved-aside
88
xcuserdata/
99
project.xcworkspace/
10-
xcshareddata/
10+
Podfile.lock
11+
Pods

.slather.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ci_service: travis_ci
2+
coverage_service: coveralls
3+
xcodeproj: SWTableViewCell.xcodeproj
4+
source_directory: SWTableViewCell/PodFiles

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: objective-c
2+
cache: cocoapods
3+
xcode_workspace: SWTableViewCell.xcworkspace
4+
xcode_scheme: SWTableViewCell
5+
xcode_sdk: iphonesimulator
6+
7+
before_install:
8+
- gem install cocoapods slather -N
9+
10+
after_success: slather

Podfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Uncomment this line to define a global platform for your project
2+
# platform :ios, '6.0'
3+
4+
target 'SWTableViewCell' do
5+
6+
end
7+
8+
target 'SWTableViewCellTests' do
9+
pod 'FBSnapshotTestCase'
10+
pod 'Expecta+Snapshots'
11+
pod 'Specta'
12+
pod 'Expecta'
13+
pod 'OCMock'
14+
end
15+

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
SWTableViewCell
22
===============
33

4+
[![Build Status](https://travis-ci.org/addoshi/SWTableViewCell.svg?branch=master)](https://travis-ci.org/addoshi/SWTableViewCell)
5+
[![Coverage Status](https://coveralls.io/repos/addoshi/SWTableViewCell/badge.svg)](https://coveralls.io/r/addoshi/SWTableViewCell)
6+
47
<p align="center"><img src="http://i.imgur.com/njKCjK8.gif"/></p>
58

69
An easy-to-use UITableViewCell subclass that implements a swipeable content view which exposes utility buttons (similar to iOS 7 Mail Application)

SWTableViewCell.xcodeproj/project.pbxproj

Lines changed: 218 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
523AF8131189D5910D9959B7 /* libPods-SWTableViewCellTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 92B6FCB0D9F5F5976482C755 /* libPods-SWTableViewCellTests.a */; };
11+
76D732681AE2F50200909802 /* SWTableViewCellTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 76D732671AE2F50200909802 /* SWTableViewCellTests.m */; };
1012
810308911846579B00C378F0 /* NSMutableArray+SWUtilityButtons.m in Sources */ = {isa = PBXBuildFile; fileRef = 810308861846579B00C378F0 /* NSMutableArray+SWUtilityButtons.m */; };
1113
810308921846579B00C378F0 /* SWCellScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 810308881846579B00C378F0 /* SWCellScrollView.m */; };
1214
810308931846579B00C378F0 /* SWLongPressGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8103088A1846579B00C378F0 /* SWLongPressGestureRecognizer.m */; };
@@ -33,7 +35,21 @@
3335
AFF15D1717F35E46007F5746 /* MI.png in Resources */ = {isa = PBXBuildFile; fileRef = AFF15D1617F35E46007F5746 /* MI.png */; };
3436
/* End PBXBuildFile section */
3537

38+
/* Begin PBXContainerItemProxy section */
39+
76D732691AE2F50200909802 /* PBXContainerItemProxy */ = {
40+
isa = PBXContainerItemProxy;
41+
containerPortal = AF34B75D17DEE2AE00BD9082 /* Project object */;
42+
proxyType = 1;
43+
remoteGlobalIDString = AF34B76417DEE2B100BD9082;
44+
remoteInfo = SWTableViewCell;
45+
};
46+
/* End PBXContainerItemProxy section */
47+
3648
/* Begin PBXFileReference section */
49+
561A417CAF3000B9397EB62B /* Pods-SWTableViewCellTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SWTableViewCellTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SWTableViewCellTests/Pods-SWTableViewCellTests.debug.xcconfig"; sourceTree = "<group>"; };
50+
76D732631AE2F50100909802 /* SWTableViewCellTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SWTableViewCellTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
51+
76D732661AE2F50200909802 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
52+
76D732671AE2F50200909802 /* SWTableViewCellTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SWTableViewCellTests.m; sourceTree = "<group>"; };
3753
810308851846579B00C378F0 /* NSMutableArray+SWUtilityButtons.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+SWUtilityButtons.h"; sourceTree = "<group>"; };
3854
810308861846579B00C378F0 /* NSMutableArray+SWUtilityButtons.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+SWUtilityButtons.m"; sourceTree = "<group>"; };
3955
810308871846579B00C378F0 /* SWCellScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SWCellScrollView.h; sourceTree = "<group>"; };
@@ -49,6 +65,7 @@
4965
810308A1184D682700C378F0 /* um.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = um.png; sourceTree = "<group>"; };
5066
810308A3184D688D00C378F0 /* UMTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UMTableViewCell.h; sourceTree = "<group>"; };
5167
810308A4184D688D00C378F0 /* UMTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UMTableViewCell.m; sourceTree = "<group>"; };
68+
92B6FCB0D9F5F5976482C755 /* libPods-SWTableViewCellTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SWTableViewCellTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
5269
AF28B0F017F77DA300A77ABB /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
5370
AF28B0F217F77DA600A77ABB /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
5471
AF28B0F417F77DB000A77ABB /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
@@ -71,9 +88,18 @@
7188
AF34B78317DEE2B800BD9082 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
7289
AF34B78417DEE2B800BD9082 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
7390
AFF15D1617F35E46007F5746 /* MI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MI.png; sourceTree = "<group>"; };
91+
E9AD27C1AFAEBD8EA1DEF5A5 /* Pods-SWTableViewCellTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SWTableViewCellTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-SWTableViewCellTests/Pods-SWTableViewCellTests.release.xcconfig"; sourceTree = "<group>"; };
7492
/* End PBXFileReference section */
7593

7694
/* Begin PBXFrameworksBuildPhase section */
95+
76D732601AE2F50100909802 /* Frameworks */ = {
96+
isa = PBXFrameworksBuildPhase;
97+
buildActionMask = 2147483647;
98+
files = (
99+
523AF8131189D5910D9959B7 /* libPods-SWTableViewCellTests.a in Frameworks */,
100+
);
101+
runOnlyForDeploymentPostprocessing = 0;
102+
};
77103
AF34B76217DEE2B100BD9082 /* Frameworks */ = {
78104
isa = PBXFrameworksBuildPhase;
79105
buildActionMask = 2147483647;
@@ -87,6 +113,32 @@
87113
/* End PBXFrameworksBuildPhase section */
88114

89115
/* Begin PBXGroup section */
116+
55277640D2AABB814E20D3F5 /* Pods */ = {
117+
isa = PBXGroup;
118+
children = (
119+
561A417CAF3000B9397EB62B /* Pods-SWTableViewCellTests.debug.xcconfig */,
120+
E9AD27C1AFAEBD8EA1DEF5A5 /* Pods-SWTableViewCellTests.release.xcconfig */,
121+
);
122+
name = Pods;
123+
sourceTree = "<group>";
124+
};
125+
76D732641AE2F50100909802 /* SWTableViewCellTests */ = {
126+
isa = PBXGroup;
127+
children = (
128+
76D732671AE2F50200909802 /* SWTableViewCellTests.m */,
129+
76D732651AE2F50200909802 /* Supporting Files */,
130+
);
131+
path = SWTableViewCellTests;
132+
sourceTree = "<group>";
133+
};
134+
76D732651AE2F50200909802 /* Supporting Files */ = {
135+
isa = PBXGroup;
136+
children = (
137+
76D732661AE2F50200909802 /* Info.plist */,
138+
);
139+
name = "Supporting Files";
140+
sourceTree = "<group>";
141+
};
90142
810308841846579B00C378F0 /* PodFiles */ = {
91143
isa = PBXGroup;
92144
children = (
@@ -110,15 +162,18 @@
110162
isa = PBXGroup;
111163
children = (
112164
AF34B76E17DEE2B200BD9082 /* SWTableViewCell */,
165+
76D732641AE2F50100909802 /* SWTableViewCellTests */,
113166
AF34B76717DEE2B200BD9082 /* Frameworks */,
114167
AF34B76617DEE2B200BD9082 /* Products */,
168+
55277640D2AABB814E20D3F5 /* Pods */,
115169
);
116170
sourceTree = "<group>";
117171
};
118172
AF34B76617DEE2B200BD9082 /* Products */ = {
119173
isa = PBXGroup;
120174
children = (
121175
AF34B76517DEE2B200BD9082 /* SWTableViewCell.app */,
176+
76D732631AE2F50100909802 /* SWTableViewCellTests.xctest */,
122177
);
123178
name = Products;
124179
sourceTree = "<group>";
@@ -130,6 +185,7 @@
130185
AF34B76817DEE2B200BD9082 /* UIKit.framework */,
131186
AF34B76A17DEE2B200BD9082 /* Foundation.framework */,
132187
AF34B76C17DEE2B200BD9082 /* CoreGraphics.framework */,
188+
92B6FCB0D9F5F5976482C755 /* libPods-SWTableViewCellTests.a */,
133189
);
134190
name = Frameworks;
135191
sourceTree = "<group>";
@@ -173,6 +229,26 @@
173229
/* End PBXGroup section */
174230

175231
/* Begin PBXNativeTarget section */
232+
76D732621AE2F50100909802 /* SWTableViewCellTests */ = {
233+
isa = PBXNativeTarget;
234+
buildConfigurationList = 76D7326B1AE2F50200909802 /* Build configuration list for PBXNativeTarget "SWTableViewCellTests" */;
235+
buildPhases = (
236+
C67FB53E1CB021D85E035F1B /* Check Pods Manifest.lock */,
237+
76D7325F1AE2F50100909802 /* Sources */,
238+
76D732601AE2F50100909802 /* Frameworks */,
239+
76D732611AE2F50100909802 /* Resources */,
240+
BE30338A7FDC2C4BE8F57ADB /* Copy Pods Resources */,
241+
);
242+
buildRules = (
243+
);
244+
dependencies = (
245+
76D7326A1AE2F50200909802 /* PBXTargetDependency */,
246+
);
247+
name = SWTableViewCellTests;
248+
productName = SWTableViewCellTests;
249+
productReference = 76D732631AE2F50100909802 /* SWTableViewCellTests.xctest */;
250+
productType = "com.apple.product-type.bundle.unit-test";
251+
};
176252
AF34B76417DEE2B100BD9082 /* SWTableViewCell */ = {
177253
isa = PBXNativeTarget;
178254
buildConfigurationList = AF34B78817DEE2B900BD9082 /* Build configuration list for PBXNativeTarget "SWTableViewCell" */;
@@ -199,6 +275,10 @@
199275
LastUpgradeCheck = 0460;
200276
ORGANIZATIONNAME = "Chris Wendel";
201277
TargetAttributes = {
278+
76D732621AE2F50100909802 = {
279+
CreatedOnToolsVersion = 6.3;
280+
TestTargetID = AF34B76417DEE2B100BD9082;
281+
};
202282
AF34B76417DEE2B100BD9082 = {
203283
DevelopmentTeam = CRQMUWXT26;
204284
};
@@ -217,11 +297,19 @@
217297
projectRoot = "";
218298
targets = (
219299
AF34B76417DEE2B100BD9082 /* SWTableViewCell */,
300+
76D732621AE2F50100909802 /* SWTableViewCellTests */,
220301
);
221302
};
222303
/* End PBXProject section */
223304

224305
/* Begin PBXResourcesBuildPhase section */
306+
76D732611AE2F50100909802 /* Resources */ = {
307+
isa = PBXResourcesBuildPhase;
308+
buildActionMask = 2147483647;
309+
files = (
310+
);
311+
runOnlyForDeploymentPostprocessing = 0;
312+
};
225313
AF34B76317DEE2B100BD9082 /* Resources */ = {
226314
isa = PBXResourcesBuildPhase;
227315
buildActionMask = 2147483647;
@@ -242,7 +330,48 @@
242330
};
243331
/* End PBXResourcesBuildPhase section */
244332

333+
/* Begin PBXShellScriptBuildPhase section */
334+
BE30338A7FDC2C4BE8F57ADB /* Copy Pods Resources */ = {
335+
isa = PBXShellScriptBuildPhase;
336+
buildActionMask = 2147483647;
337+
files = (
338+
);
339+
inputPaths = (
340+
);
341+
name = "Copy Pods Resources";
342+
outputPaths = (
343+
);
344+
runOnlyForDeploymentPostprocessing = 0;
345+
shellPath = /bin/sh;
346+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SWTableViewCellTests/Pods-SWTableViewCellTests-resources.sh\"\n";
347+
showEnvVarsInLog = 0;
348+
};
349+
C67FB53E1CB021D85E035F1B /* Check Pods Manifest.lock */ = {
350+
isa = PBXShellScriptBuildPhase;
351+
buildActionMask = 2147483647;
352+
files = (
353+
);
354+
inputPaths = (
355+
);
356+
name = "Check Pods Manifest.lock";
357+
outputPaths = (
358+
);
359+
runOnlyForDeploymentPostprocessing = 0;
360+
shellPath = /bin/sh;
361+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
362+
showEnvVarsInLog = 0;
363+
};
364+
/* End PBXShellScriptBuildPhase section */
365+
245366
/* Begin PBXSourcesBuildPhase section */
367+
76D7325F1AE2F50100909802 /* Sources */ = {
368+
isa = PBXSourcesBuildPhase;
369+
buildActionMask = 2147483647;
370+
files = (
371+
76D732681AE2F50200909802 /* SWTableViewCellTests.m in Sources */,
372+
);
373+
runOnlyForDeploymentPostprocessing = 0;
374+
};
246375
AF34B76117DEE2B100BD9082 /* Sources */ = {
247376
isa = PBXSourcesBuildPhase;
248377
buildActionMask = 2147483647;
@@ -262,6 +391,14 @@
262391
};
263392
/* End PBXSourcesBuildPhase section */
264393

394+
/* Begin PBXTargetDependency section */
395+
76D7326A1AE2F50200909802 /* PBXTargetDependency */ = {
396+
isa = PBXTargetDependency;
397+
target = AF34B76417DEE2B100BD9082 /* SWTableViewCell */;
398+
targetProxy = 76D732691AE2F50200909802 /* PBXContainerItemProxy */;
399+
};
400+
/* End PBXTargetDependency section */
401+
265402
/* Begin PBXVariantGroup section */
266403
AF34B77117DEE2B400BD9082 /* InfoPlist.strings */ = {
267404
isa = PBXVariantGroup;
@@ -282,6 +419,74 @@
282419
/* End PBXVariantGroup section */
283420

284421
/* Begin XCBuildConfiguration section */
422+
76D7326C1AE2F50200909802 /* Debug */ = {
423+
isa = XCBuildConfiguration;
424+
baseConfigurationReference = 561A417CAF3000B9397EB62B /* Pods-SWTableViewCellTests.debug.xcconfig */;
425+
buildSettings = {
426+
BUNDLE_LOADER = "$(TEST_HOST)";
427+
CLANG_ENABLE_MODULES = YES;
428+
CLANG_WARN_BOOL_CONVERSION = YES;
429+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
430+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
431+
CLANG_WARN_UNREACHABLE_CODE = YES;
432+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
433+
ENABLE_STRICT_OBJC_MSGSEND = YES;
434+
FRAMEWORK_SEARCH_PATHS = (
435+
"$(SDKROOT)/Developer/Library/Frameworks",
436+
"$(inherited)",
437+
);
438+
GCC_NO_COMMON_BLOCKS = YES;
439+
GCC_PREPROCESSOR_DEFINITIONS = (
440+
"DEBUG=1",
441+
"$(inherited)",
442+
);
443+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
444+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
445+
GCC_WARN_UNDECLARED_SELECTOR = YES;
446+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
447+
GCC_WARN_UNUSED_FUNCTION = YES;
448+
INFOPLIST_FILE = SWTableViewCellTests/Info.plist;
449+
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
450+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
451+
MTL_ENABLE_DEBUG_INFO = YES;
452+
PRODUCT_NAME = "$(TARGET_NAME)";
453+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SWTableViewCell.app/SWTableViewCell";
454+
};
455+
name = Debug;
456+
};
457+
76D7326D1AE2F50200909802 /* Release */ = {
458+
isa = XCBuildConfiguration;
459+
baseConfigurationReference = E9AD27C1AFAEBD8EA1DEF5A5 /* Pods-SWTableViewCellTests.release.xcconfig */;
460+
buildSettings = {
461+
BUNDLE_LOADER = "$(TEST_HOST)";
462+
CLANG_ENABLE_MODULES = YES;
463+
CLANG_WARN_BOOL_CONVERSION = YES;
464+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
465+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
466+
CLANG_WARN_UNREACHABLE_CODE = YES;
467+
COPY_PHASE_STRIP = NO;
468+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
469+
ENABLE_NS_ASSERTIONS = NO;
470+
ENABLE_STRICT_OBJC_MSGSEND = YES;
471+
FRAMEWORK_SEARCH_PATHS = (
472+
"$(SDKROOT)/Developer/Library/Frameworks",
473+
"$(inherited)",
474+
);
475+
GCC_NO_COMMON_BLOCKS = YES;
476+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
477+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
478+
GCC_WARN_UNDECLARED_SELECTOR = YES;
479+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
480+
GCC_WARN_UNUSED_FUNCTION = YES;
481+
INFOPLIST_FILE = SWTableViewCellTests/Info.plist;
482+
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
483+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
484+
MTL_ENABLE_DEBUG_INFO = NO;
485+
PRODUCT_NAME = "$(TARGET_NAME)";
486+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SWTableViewCell.app/SWTableViewCell";
487+
};
488+
name = Release;
489+
};
285490
AF34B78617DEE2B800BD9082 /* Debug */ = {
286491
isa = XCBuildConfiguration;
287492
buildSettings = {
@@ -298,6 +503,8 @@
298503
COPY_PHASE_STRIP = NO;
299504
GCC_C_LANGUAGE_STANDARD = gnu99;
300505
GCC_DYNAMIC_NO_PIC = NO;
506+
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
507+
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
301508
GCC_OPTIMIZATION_LEVEL = 0;
302509
GCC_PREPROCESSOR_DEFINITIONS = (
303510
"DEBUG=1",
@@ -328,6 +535,8 @@
328535
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
329536
COPY_PHASE_STRIP = YES;
330537
GCC_C_LANGUAGE_STANDARD = gnu99;
538+
GCC_GENERATE_TEST_COVERAGE_FILES = YES;
539+
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES;
331540
GCC_WARN_ABOUT_RETURN_TYPE = YES;
332541
GCC_WARN_UNINITIALIZED_AUTOS = YES;
333542
GCC_WARN_UNUSED_VARIABLE = YES;
@@ -371,6 +580,15 @@
371580
/* End XCBuildConfiguration section */
372581

373582
/* Begin XCConfigurationList section */
583+
76D7326B1AE2F50200909802 /* Build configuration list for PBXNativeTarget "SWTableViewCellTests" */ = {
584+
isa = XCConfigurationList;
585+
buildConfigurations = (
586+
76D7326C1AE2F50200909802 /* Debug */,
587+
76D7326D1AE2F50200909802 /* Release */,
588+
);
589+
defaultConfigurationIsVisible = 0;
590+
defaultConfigurationName = Release;
591+
};
374592
AF34B76017DEE2AE00BD9082 /* Build configuration list for PBXProject "SWTableViewCell" */ = {
375593
isa = XCConfigurationList;
376594
buildConfigurations = (

0 commit comments

Comments
 (0)