-
Notifications
You must be signed in to change notification settings - Fork 157
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
4ce0cbd
commit 7daec7c
Showing
11 changed files
with
26 additions
and
23 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
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ public void GitCommitRefTests_Constructor() | |
Assert.IsNotNull(target.Committer, "Committer"); | ||
Assert.AreEqual("Donovan Brown", target.Committer.Name, "Committer.Name"); | ||
Assert.AreEqual("[email protected]", target.Committer.Email, "Committer.Email"); | ||
Assert.AreEqual("8/8/2019 8:58:58 PM", target.Committer.Date.ToString(), "Committer.Date"); | ||
Assert.AreEqual("8/8/2019 8:58:58 pm", target.Committer.Date.ToString("M/d/yyyy h:mm:ss tt").ToLower(), "Committer.Date"); | ||
} | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -37,7 +37,7 @@ public void Release_Constructor() | |
|
||
Assert.AreEqual("[email protected]", target.ModifiedBy.UniqueName, "ModifiedBy.UniqueName"); | ||
Assert.AreEqual("Donovan Brown", target.CreatedBy.DisplayName, "CreatedBy.DisplayName"); | ||
Assert.AreEqual("11/14/2019 12:56:09 AM", target.CreatedOn.ToString(), "CreatedOn.ToString()"); | ||
Assert.AreEqual("11/14/2019 12:56:09 am", target.CreatedOn.ToString("M/d/yyyy h:mm:ss tt").ToLower(), "CreatedOn.ToString()"); | ||
|
||
Assert.AreEqual("Donovan Brown", target.CreatedByUser, "CreatedByUser"); | ||
Assert.AreEqual("Donovan Brown", target.ModifiedByUser, "ModifiedByUser"); | ||
|
@@ -66,7 +66,7 @@ public void Release_Constructor_Expand_Environments() | |
|
||
Assert.AreEqual("[email protected]", target.ModifiedBy.UniqueName, "ModifiedBy.UniqueName"); | ||
Assert.AreEqual("Donovan Brown", target.CreatedBy.DisplayName, "CreatedBy.DisplayName"); | ||
Assert.AreEqual("7/13/2019 3:49:31 PM", target.CreatedOn.ToString(), "CreatedOn.ToString()"); | ||
Assert.AreEqual("7/13/2019 3:49:31 pm", target.CreatedOn.ToString("M/d/yyyy h:mm:ss tt").ToLower(), "CreatedOn.ToString()"); | ||
} | ||
|
||
[TestMethod] | ||
|
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ public void UserEntitlementTests_Constructor() | |
Assert.AreEqual("Math lastName", target.DisplayName, "DisplayName"); | ||
Assert.AreEqual("[email protected]", target.UniqueName, "UniqueName"); | ||
Assert.AreEqual("Early Adopter", target.AccessLevelName, "AccessLevelName"); | ||
Assert.AreEqual("9/9/2020 6:43:29 AM", target.LastAccessedDate.ToString(), "LastAccessedDate"); | ||
Assert.AreEqual("9/9/2020 6:43:29 am", target.LastAccessedDate.ToString("M/d/yyyy h:mm:ss tt").ToLower(), "LastAccessedDate"); | ||
} | ||
|
||
[TestMethod] | ||
|