diff --git a/MobileVLCKit.xcodeproj/project.pbxproj b/MobileVLCKit.xcodeproj/project.pbxproj index 7efb37bfb..e737c4131 100644 --- a/MobileVLCKit.xcodeproj/project.pbxproj +++ b/MobileVLCKit.xcodeproj/project.pbxproj @@ -180,6 +180,7 @@ 8D826AE2203F3CC500536EF7 /* VLCRendererItem.h in Copy Headers */ = {isa = PBXBuildFile; fileRef = 8D2CE64E203EEA47004BB7F6 /* VLCRendererItem.h */; }; AACBBE4A0F95108600F1A2B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AACBBE490F95108600F1A2B1 /* Foundation.framework */; }; CA0301D020ADFD2500452BB8 /* libMobileVLCKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AAC07E0554694100DB518D /* libMobileVLCKit.a */; }; + CA8A2F5620B44BD600F5D3EA /* VLCTimeTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA8A2F5520B44BD600F5D3EA /* VLCTimeTest.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -394,6 +395,7 @@ CA0301CB20ADFD2500452BB8 /* MobileVLCKit-iOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "MobileVLCKit-iOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; CA0301CF20ADFD2500452BB8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; CA0301D620ADFEA100452BB8 /* MobileVLCKit-iOSTests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MobileVLCKit-iOSTests-Bridging-Header.h"; sourceTree = ""; }; + CA8A2F5520B44BD600F5D3EA /* VLCTimeTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = VLCTimeTest.swift; path = ../Sources/VLCTimeTest.swift; sourceTree = ""; }; D2AAC07E0554694100DB518D /* libMobileVLCKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libMobileVLCKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ @@ -706,6 +708,7 @@ children = ( CA0301CF20ADFD2500452BB8 /* Info.plist */, CA0301D620ADFEA100452BB8 /* MobileVLCKit-iOSTests-Bridging-Header.h */, + CA8A2F5520B44BD600F5D3EA /* VLCTimeTest.swift */, ); name = "MobileVLCKit-iOSTests"; path = "Tests/MobileVLCKit-iOSTests"; @@ -1036,6 +1039,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + CA8A2F5620B44BD600F5D3EA /* VLCTimeTest.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/Tests/Sources/VLCTimeTest.swift b/Tests/Sources/VLCTimeTest.swift new file mode 100644 index 000000000..cc3bd0a31 --- /dev/null +++ b/Tests/Sources/VLCTimeTest.swift @@ -0,0 +1,29 @@ +/***************************************************************************** + * VLCTimeTest.swift + ***************************************************************************** + * Copyright (C) 2018 Mike JS. Choi + * Copyright (C) 2018 VLC authors and VideoLAN + * $Id$ + * + * Authors: Mike JS. Choi + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + *****************************************************************************/ + +import XCTest + +class VLCTimeTest: XCTestCase { + // Note: This is just a stub +}