This PR contains the work done to implement the `iTunesService` service that fetches the reviews from the **Apple App Store**. Reviewed-on: #5 Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
28 lines
500 B
Swift
28 lines
500 B
Swift
//
|
|
// String+ConstantsTests.swift
|
|
// ReviewsFoundationTest
|
|
//
|
|
// Created by Javier Cicchelli on 16/03/2024.
|
|
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
|
|
//
|
|
|
|
import ReviewsFoundationKit
|
|
import XCTest
|
|
|
|
final class String_ConstantsTests: XCTestCase {
|
|
|
|
// MARK: Properties
|
|
private var sut: String!
|
|
|
|
// MARK: Constants tests
|
|
func testEmpty() {
|
|
// GIVEN
|
|
sut = .empty
|
|
|
|
// WHEN
|
|
// THEN
|
|
XCTAssertTrue(sut.isEmpty)
|
|
}
|
|
|
|
}
|