-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5392134
commit 0af1704
Showing
4 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,9 +28,9 @@ class ViewController: UIViewController { | |
super.viewDidLoad() | ||
|
||
// Generate CSV file | ||
let user1 = ["userid":107,"name" :"vignesh","email":"[email protected]","isValidUser":true,"balance":571.05] as [String : Any] | ||
let user1 = ["userid":107,"name" :"洸藤村","email":"[email protected]","isValidUser":true,"balance":571.05] as [String : Any] | ||
|
||
let user2 = ["userid":107,"name" :"vinoth","email":"[email protected]","isValidUser":false,"balance":567.05] as [String : Any] | ||
let user2 = ["userid":107,"name" :"كامل","email":"[email protected]","isValidUser":false,"balance":567.05] as [String : Any] | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ class SwiftCSVExportTests: XCTestCase { | |
let user2:NSMutableDictionary = NSMutableDictionary() | ||
user2.setObject(108, forKey: "userid" as NSCopying); | ||
user2.setObject("vinoth", forKey: "name" as NSCopying); | ||
user2.setObject("[email protected]", forKey: "email" as NSCopying); | ||
user2.setObject("كامل", forKey: "email" as NSCopying); | ||
user2.setObject(true, forKey:"isValidUser" as NSCopying) | ||
user2.setObject("Hi 'Vinoth!', \nHow are you? \t Shall we meet tomorrow? \r Thanks ", forKey: "message" as NSCopying); | ||
user2.setObject(567.50, forKey: "balance" as NSCopying); | ||
|