Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@
*.pdb
/IntelliTest/PathCoverage/.vs/PathCoverage/v15
/IntelliTest/PathCoverage/PathCoverage/obj/Debug
/IntelliTest/PathCoverage/PathCoverage/obj/Release
6 changes: 2 additions & 4 deletions SimpleMath/SimpleMathAddTests/AddTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using SimpleMath;
using System;
using System.Collections.Generic;
Expand All @@ -15,9 +15,7 @@ public class AddTests
public void addTest()
{
var i = new SimpleMath.Add().add(5, 4);
Assert.AreEqual<int>(9, i);

//System.Threading.Thread.Sleep(((1 * 1000) * 62) * 10); // sleep for a little over 10 mins.
//System.Threading.Thread.Sleep(((1 * 1000) * 62) * 10); // sleep for a little over 10 mins. testgdfdrdf
}

[TestMethod()]
Expand Down