-
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.
Made CsvGen x86/x64
- Loading branch information
Joakim Wennergren
committed
Jan 15, 2018
1 parent
c463a9e
commit 6669e4c
Showing
8 changed files
with
71 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
_ReSharper.CsvQuerySolution | ||
bin | ||
obj | ||
/CsvQuery/CsvQuery.csproj.user | ||
/TestResults | ||
|
||
/Local.testsettings | ||
.axoCover | ||
.vs | ||
*.user | ||
*.testsettings | ||
|
||
/TraceAndTestImpact.testsettings | ||
/Tests/*.user | ||
/*.suo | ||
/CsvQuerySolution.sln.DotSettings.user | ||
/.vs | ||
/*.psess | ||
/*.vspx | ||
.axoCover | ||
|
||
/TestResults |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using CsvQuery.PluginInfrastructure; | ||
|
||
namespace Tests.PluginInfrastructure | ||
{ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
|
||
[TestClass] | ||
public class ColourFacts | ||
{ | ||
[TestMethod] | ||
public void Int_Constructor_returns_same_value() | ||
{ | ||
var val = 0x123456; | ||
var c = new Colour(val); | ||
Assert.AreEqual(val, c.Value); | ||
} | ||
} | ||
} |
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