├── .gitignore ├── CountdownTimer ├── CountdownTimer.xcodeproj │ └── project.pbxproj ├── CountdownTimer │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── CountdownTimerTests │ ├── CountdownTimerTests.swift │ └── Info.plist ├── CountdownTimerUITests │ ├── CountdownTimerUITests.swift │ └── Info.plist └── Podfile └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/.gitignore -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimer/AppDelegate.swift -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimer/Info.plist -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimer/ViewController.swift -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimerTests/CountdownTimerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimerTests/CountdownTimerTests.swift -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimerTests/Info.plist -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimerUITests/CountdownTimerUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimerUITests/CountdownTimerUITests.swift -------------------------------------------------------------------------------- /CountdownTimer/CountdownTimerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/CountdownTimerUITests/Info.plist -------------------------------------------------------------------------------- /CountdownTimer/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/CountdownTimer/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vbmania/CountdownTimerTddExam/HEAD/README.md --------------------------------------------------------------------------------