Skip to content

Instantly share code, notes, and snippets.

@chriswebb09
Created June 4, 2017 01:35
Show Gist options
  • Save chriswebb09/d863a220c44a1f882357dddd3966d792 to your computer and use it in GitHub Desktop.
Save chriswebb09/d863a220c44a1f882357dddd3966d792 to your computer and use it in GitHub Desktop.
import XCTest
@testable import TestExample
class TestExampleTests: XCTestCase {
func testEmail() {
XCTAssertTrue("[email protected]".isValidEmail())
XCTAssertFalse("chris.com".isValidEmail())
XCTAssertFalse("chris@gmaill".isValidEmail())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment