Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Xunit 2 #12

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
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
27 changes: 27 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto

# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.h text
*.cs text
*.config text
*.xml text
*.manifest text
*.bat text
*.cmd text
*.sh text
*.txt text
*.dat text
*.rc text
*.ps1 text

# Declare files that will always have CRLF line endings on checkout.

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.dll binary
*.exe binary
*.pdb binary
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,5 @@ oi-definitions.json
/MMProfiler/main/MMProfiler/MMProfiler64_i.h
/MMProfiler/main/MMProfiler/MMProfiler.aps
/MMProfiler/main/MMProfiler_mm_cache.bin

*/_ReSharperPlatform*/
87 changes: 67 additions & 20 deletions AutoTest.Net/AutoTest.NET.sln
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{D0A96165-68B5-4DD8-82A6-04BFBEB67D12}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestRunner", "TestRunner", "{64E18F23-8359-44D3-8B24-584FFBA63D67}"
Expand Down Expand Up @@ -105,10 +107,17 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoTest.Server", "src\AutoTest.Server\AutoTest.Server.csproj", "{95868EB3-9873-4017-A99E-7A6899BB6CD0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "XUnit2", "XUnit2", "{58A6AAD3-6569-4DFC-8A7C-D9AD4B39EBC7}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{1930B2A0-A734-4F79-9963-BE7EBF5566C1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoTest.TestRunners.XUnit2", "src\AutoTest.TestRunner\Plugins\AutoTest.TestRunners.XUnit2\AutoTest.TestRunners.XUnit2.csproj", "{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoTest.TestRunners.XUnit2.Tests.TestResource", "src\AutoTest.TestRunner\Plugins\AutoTest.TestRunners.XUnit2.Tests.TestResource\AutoTest.TestRunners.XUnit2.Tests.TestResource.csproj", "{97E83122-AB34-438D-8D18-DFE2FADC6EEA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoTest.TestRunners.XUnit2.Tests", "src\AutoTest.TestRunner\Plugins\AutoTest.TestRunners.XUnit2.Tests\AutoTest.TestRunners.XUnit2.Tests.csproj", "{C847DCCC-36A3-4D73-BA13-E44765CF455D}"
EndProject
Global
GlobalSection(TestCaseManagementSettings) = postSolution
CategoryFile = AutoTest.NET.vsmdi
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Expand Down Expand Up @@ -358,45 +367,83 @@ Global
{95868EB3-9873-4017-A99E-7A6899BB6CD0}.Release|Mixed Platforms.Build.0 = Release|x86
{95868EB3-9873-4017-A99E-7A6899BB6CD0}.Release|x86.ActiveCfg = Release|x86
{95868EB3-9873-4017-A99E-7A6899BB6CD0}.Release|x86.Build.0 = Release|x86
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Debug|x86.ActiveCfg = Debug|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Release|Any CPU.Build.0 = Release|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB}.Release|x86.ActiveCfg = Release|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Debug|x86.ActiveCfg = Debug|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Release|Any CPU.Build.0 = Release|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{97E83122-AB34-438D-8D18-DFE2FADC6EEA}.Release|x86.ActiveCfg = Release|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Debug|x86.ActiveCfg = Debug|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Release|Any CPU.Build.0 = Release|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{C847DCCC-36A3-4D73-BA13-E44765CF455D}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{C10F3D4F-EE5A-4F5F-96B4-E4D88DD719BF} = {D0A96165-68B5-4DD8-82A6-04BFBEB67D12}
{D2BE27D7-36C9-4C0E-92A6-E2768666F430} = {D0A96165-68B5-4DD8-82A6-04BFBEB67D12}
{2A038F0D-A396-4D7D-934F-05003B9624F8} = {64E18F23-8359-44D3-8B24-584FFBA63D67}
{9584B75B-B21A-44C3-97AA-BECA427E091A} = {64E18F23-8359-44D3-8B24-584FFBA63D67}
{7D34AABB-DD67-4826-AD89-75D91A1375F5} = {64E18F23-8359-44D3-8B24-584FFBA63D67}
{E648C29A-EF25-44CB-924E-019949ABD6B9} = {64E18F23-8359-44D3-8B24-584FFBA63D67}
{86D43491-13DA-45E8-B74E-BD3F69030A45} = {2A038F0D-A396-4D7D-934F-05003B9624F8}
{D8676CE8-51F3-444D-B356-FD3FE7BE33C6} = {9584B75B-B21A-44C3-97AA-BECA427E091A}
{75395DC3-E808-448E-A1F1-6C62D7FF7E80} = {D8676CE8-51F3-444D-B356-FD3FE7BE33C6}
{759586B7-0DB5-4589-B03F-3A629BA8418C} = {9584B75B-B21A-44C3-97AA-BECA427E091A}
{0AB4F96C-8D25-4743-80ED-0F0AACA07E94} = {759586B7-0DB5-4589-B03F-3A629BA8418C}
{AC6F930F-CE1D-4419-A49F-4CA7AE7B74CE} = {9584B75B-B21A-44C3-97AA-BECA427E091A}
{A0FE44DE-102D-4ACA-A72F-4BE1CF5EE868} = {AC6F930F-CE1D-4419-A49F-4CA7AE7B74CE}
{B2F049EF-B53D-490D-9FD9-79FE31E43778} = {9584B75B-B21A-44C3-97AA-BECA427E091A}
{28B6942F-8E40-46E9-B370-FC9D892F05AB} = {B2F049EF-B53D-490D-9FD9-79FE31E43778}
{3B4A0917-8A55-46A0-A5ED-6AA5E853DFF5} = {9584B75B-B21A-44C3-97AA-BECA427E091A}
{D4655401-9406-4E3B-B347-BF09715FB6CD} = {3B4A0917-8A55-46A0-A5ED-6AA5E853DFF5}
{5FA46723-32D9-4512-9D8A-ECD4B27F0102} = {9584B75B-B21A-44C3-97AA-BECA427E091A}
{75395DC3-E808-448E-A1F1-6C62D7FF7E80} = {D8676CE8-51F3-444D-B356-FD3FE7BE33C6}
{C8D15BC2-50DA-48CD-9B7B-48CFB7FF36F5} = {D8676CE8-51F3-444D-B356-FD3FE7BE33C6}
{D6647114-59E5-4811-8C0D-6BBA3D4A68F5} = {5FA46723-32D9-4512-9D8A-ECD4B27F0102}
{C10F3D4F-EE5A-4F5F-96B4-E4D88DD719BF} = {D0A96165-68B5-4DD8-82A6-04BFBEB67D12}
{D2BE27D7-36C9-4C0E-92A6-E2768666F430} = {D0A96165-68B5-4DD8-82A6-04BFBEB67D12}
{7D34AABB-DD67-4826-AD89-75D91A1375F5} = {64E18F23-8359-44D3-8B24-584FFBA63D67}
{86D43491-13DA-45E8-B74E-BD3F69030A45} = {2A038F0D-A396-4D7D-934F-05003B9624F8}
{50C99985-64CF-4E34-98A6-AD3CB3527A42} = {75395DC3-E808-448E-A1F1-6C62D7FF7E80}
{8FC77959-F864-4795-87DF-7F52CE953F3E} = {75395DC3-E808-448E-A1F1-6C62D7FF7E80}
{0AB4F96C-8D25-4743-80ED-0F0AACA07E94} = {759586B7-0DB5-4589-B03F-3A629BA8418C}
{C8D15BC2-50DA-48CD-9B7B-48CFB7FF36F5} = {D8676CE8-51F3-444D-B356-FD3FE7BE33C6}
{91AC898D-8D70-461F-B41F-E995895D40B3} = {759586B7-0DB5-4589-B03F-3A629BA8418C}
{712F063F-2F83-4E42-89A7-1EA114F539A1} = {759586B7-0DB5-4589-B03F-3A629BA8418C}
{A0FE44DE-102D-4ACA-A72F-4BE1CF5EE868} = {AC6F930F-CE1D-4419-A49F-4CA7AE7B74CE}
{B0BD39D5-958D-4860-9897-9BB98907EF99} = {AC6F930F-CE1D-4419-A49F-4CA7AE7B74CE}
{AFC7C4E0-8298-4EEB-B77D-0D4CE739A847} = {A0FE44DE-102D-4ACA-A72F-4BE1CF5EE868}
{A756C120-9E09-4D1F-BAA8-D0AF982EEA28} = {A0FE44DE-102D-4ACA-A72F-4BE1CF5EE868}
{28B6942F-8E40-46E9-B370-FC9D892F05AB} = {B2F049EF-B53D-490D-9FD9-79FE31E43778}
{EE41D60E-ED22-43F6-B746-630EA6E6FE85} = {B2F049EF-B53D-490D-9FD9-79FE31E43778}
{D4655401-9406-4E3B-B347-BF09715FB6CD} = {3B4A0917-8A55-46A0-A5ED-6AA5E853DFF5}
{68BA6298-D4EC-4A02-905E-1AF3C0EB2C76} = {3B4A0917-8A55-46A0-A5ED-6AA5E853DFF5}
{849CF95D-A213-4CCE-B598-C328FE398FBC} = {D4655401-9406-4E3B-B347-BF09715FB6CD}
{5EEF8AED-7FE2-4929-8C27-79FBA466BA17} = {D4655401-9406-4E3B-B347-BF09715FB6CD}
{D6647114-59E5-4811-8C0D-6BBA3D4A68F5} = {5FA46723-32D9-4512-9D8A-ECD4B27F0102}
{68BA6298-D4EC-4A02-905E-1AF3C0EB2C76} = {3B4A0917-8A55-46A0-A5ED-6AA5E853DFF5}
{E648C29A-EF25-44CB-924E-019949ABD6B9} = {64E18F23-8359-44D3-8B24-584FFBA63D67}
{96B0635D-C7E7-40F1-981D-89D1FC4BDC49} = {5FA46723-32D9-4512-9D8A-ECD4B27F0102}
{7C78B8BD-C1F7-4F36-AC77-9510E67E8F48} = {D6647114-59E5-4811-8C0D-6BBA3D4A68F5}
{F805F188-B103-4CD1-B68F-97B0A4698B15} = {D6647114-59E5-4811-8C0D-6BBA3D4A68F5}
{712F063F-2F83-4E42-89A7-1EA114F539A1} = {759586B7-0DB5-4589-B03F-3A629BA8418C}
{5EEF8AED-7FE2-4929-8C27-79FBA466BA17} = {D4655401-9406-4E3B-B347-BF09715FB6CD}
{58A6AAD3-6569-4DFC-8A7C-D9AD4B39EBC7} = {9584B75B-B21A-44C3-97AA-BECA427E091A}
{1930B2A0-A734-4F79-9963-BE7EBF5566C1} = {58A6AAD3-6569-4DFC-8A7C-D9AD4B39EBC7}
{90DB0FF8-D635-4AD1-B310-37DB366CBFEB} = {58A6AAD3-6569-4DFC-8A7C-D9AD4B39EBC7}
{97E83122-AB34-438D-8D18-DFE2FADC6EEA} = {1930B2A0-A734-4F79-9963-BE7EBF5566C1}
{C847DCCC-36A3-4D73-BA13-E44765CF455D} = {1930B2A0-A734-4F79-9963-BE7EBF5566C1}
EndGlobalSection
GlobalSection(TestCaseManagementSettings) = postSolution
CategoryFile = AutoTest.NET.vsmdi
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = src\AutoTest.WinForms\AutoTest.WinForms.csproj
Expand Down
Loading