Skip to content

Instantly share code, notes, and snippets.

View itsanan's full-sized avatar
🐳
Diving into Swift

Anan itsanan

🐳
Diving into Swift
  • Indonesia
  • 08:55 (UTC +07:00)
View GitHub Profile
@itsanan
itsanan / Tests.swift
Last active June 22, 2020 17:44
Testing template for Business Logic.
import XCTest
@testable import "DROP YOUR APP TARGET HERE"
class Tests: XCTestCase {
var sut: "DROP YOUR CLASS THAT YOU WANT TO TEST"!
override func setUp() {
super.setUp()
sut = "DROP YOUR CLASS THAT YOU WANT TO TEST"()
@itsanan
itsanan / Services.swift
Last active June 22, 2020 17:46
Four basic functions of persistent storage (CRUD) with URLSession.
//
// Services.swift
// PlayingAPI
//
// Created by Anantya F on 29/11/19.
// Copyright © 2019 Anantya F. All rights reserved.
//
import Foundation