app-reviews/Libraries/Foundation/Test/Tests/Extensions/String+ConstantsTests.swift
Javier Cicchelli 8fa5533426 [Library] Foundation library setup (#3)
This PR contains the work done to define a `Libraries` package that includes its `Foundation` library in it, and integrated the former to the `Feed` framework and `App` targets in the project as well.

Reviewed-on: #3
Co-authored-by: Javier Cicchelli <javier@rock-n-code.com>
Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
2024-03-16 01:53:37 +00:00

28 lines
504 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 ReviewsFoundation
import XCTest
final class String_ConstantsTests: XCTestCase {
// MARK: Properties
private var sut: String!
// MARK: Constants tests
func testEmpty() throws {
// GIVEN
sut = .empty
// WHEN
// THEN
XCTAssertTrue(sut.isEmpty)
}
}