Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
whats-open-ios
Commits
4e96f968
Commit
4e96f968
authored
Dec 26, 2016
by
Eyad Hasan
Browse files
Adding some more stuff to the unit tests. Really just skeleton code
parent
4e02b2ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
WhatsOpen/WhatsOpen.xcodeproj/project.pbxproj
View file @
4e96f968
...
...
@@ -8,6 +8,7 @@
/* Begin PBXBuildFile section */
62C83AD91AF879227B0E6F76
/* Pods_WhatsOpen.framework in Frameworks */
=
{
isa
=
PBXBuildFile
;
fileRef
=
6465D077C7E63538B5736D27
/* Pods_WhatsOpen.framework */
;
};
7F4743271E11D1BC00E6E3D1
/* MainTableViewControllerTests.swift in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
7F4743261E11D1BC00E6E3D1
/* MainTableViewControllerTests.swift */
;
};
CD3C97491DC18AB300A84434
/* SRCTNetworkController.swift in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
CD3C97481DC18AB300A84434
/* SRCTNetworkController.swift */
;
};
CD466DD21DC12E1200E44DF5
/* MainTableViewController.swift in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
CD466DD11DC12E1200E44DF5
/* MainTableViewController.swift */
;
};
CD763A7A1DE24EF100ADFD6B
/* examplejson.swift in Sources */
=
{
isa
=
PBXBuildFile
;
fileRef
=
CD763A791DE24EF100ADFD6B
/* examplejson.swift */
;
};
...
...
@@ -48,6 +49,7 @@
6465D077C7E63538B5736D27
/* Pods_WhatsOpen.framework */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
wrapper.framework
;
includeInIndex
=
0
;
path
=
Pods_WhatsOpen.framework
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
7F4743181E11C7D100E6E3D1
/* WhatsOpenTests.xctest */
=
{
isa
=
PBXFileReference
;
explicitFileType
=
wrapper.cfbundle
;
includeInIndex
=
0
;
path
=
WhatsOpenTests.xctest
;
sourceTree
=
BUILT_PRODUCTS_DIR
;
};
7F47431C1E11C7D100E6E3D1
/* Info.plist */
=
{
isa
=
PBXFileReference
;
lastKnownFileType
=
text.plist.xml
;
path
=
Info.plist
;
sourceTree
=
"<group>"
;
};
7F4743261E11D1BC00E6E3D1
/* MainTableViewControllerTests.swift */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.swift
;
path
=
MainTableViewControllerTests.swift
;
sourceTree
=
"<group>"
;
};
CD3C97481DC18AB300A84434
/* SRCTNetworkController.swift */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.swift
;
path
=
SRCTNetworkController.swift
;
sourceTree
=
"<group>"
;
};
CD466DD11DC12E1200E44DF5
/* MainTableViewController.swift */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.swift
;
path
=
MainTableViewController.swift
;
sourceTree
=
"<group>"
;
};
CD763A791DE24EF100ADFD6B
/* examplejson.swift */
=
{
isa
=
PBXFileReference
;
fileEncoding
=
4
;
lastKnownFileType
=
sourcecode.swift
;
name
=
examplejson.swift
;
path
=
"Object Model/examplejson.swift"
;
sourceTree
=
"<group>"
;
};
...
...
@@ -84,6 +86,7 @@
isa
=
PBXGroup
;
children
=
(
7F47431C1E11C7D100E6E3D1
/* Info.plist */
,
7F4743261E11D1BC00E6E3D1
/* MainTableViewControllerTests.swift */
,
);
path
=
WhatsOpenTests
;
sourceTree
=
"<group>"
;
...
...
@@ -308,6 +311,7 @@
isa
=
PBXSourcesBuildPhase
;
buildActionMask
=
2147483647
;
files
=
(
7F4743271E11D1BC00E6E3D1
/* MainTableViewControllerTests.swift in Sources */
,
);
runOnlyForDeploymentPostprocessing
=
0
;
};
...
...
WhatsOpen/WhatsOpenTests/MainTableViewControllerTests.swift
0 → 100644
View file @
4e96f968
//
// MainTableViewControllerTests.swift
// WhatsOpen
//
// Created by Eyad Hasan on 12/26/16.
// Copyright © 2016 Patrick Murray. All rights reserved.
//
import
UIKit
import
XCTest
@testable
import
WhatsOpen
import
CoreData
class
MainTableViewControllerTests
:
XCTestCase
{
var
viewController
:
MainTableViewController
!
override
func
setUp
()
{
super
.
setUp
()
viewController
=
UIStoryboard
(
name
:
"Main"
,
bundle
:
nil
)
.
instantiateViewController
(
withIdentifier
:
"MainTableViewController"
)
as!
MainTableViewController
}
override
func
tearDown
()
{
// Put teardown code here. This method is called after the invocation of each test method in the class.
super
.
tearDown
()
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment