From 4ecdc8545faf3c8655294acaf9f32fcb42732893 Mon Sep 17 00:00:00 2001 From: Natascha Fadeeva Date: Wed, 27 Nov 2019 11:28:29 +0100 Subject: [PATCH] Add test assert to unit test testCanSetLabel. (#625) --- Tests/SnapKitTests/Tests.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tests/SnapKitTests/Tests.swift b/Tests/SnapKitTests/Tests.swift index acf48aa..eaaf231 100644 --- a/Tests/SnapKitTests/Tests.swift +++ b/Tests/SnapKitTests/Tests.swift @@ -736,6 +736,8 @@ class SnapKitTests: XCTestCase { func testCanSetLabel() { self.container.snp.setLabel("Hello World") + + XCTAssertEqual(self.container.snp.label(), "Hello World") } func testPriorityShortcuts() {