Skip to content

Commit

Permalink
v4.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mmanela committed Sep 3, 2016
1 parent 2430f53 commit 6e45c62
Show file tree
Hide file tree
Showing 16 changed files with 38 additions and 26 deletions.
2 changes: 1 addition & 1 deletion Chutzpah/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Chutzpah
{
public static class Constants
{
public const string ChutzpahVersion = "4.2.3";
public const string ChutzpahVersion = "4.2.4";

public const string TestFileFolder = "TestFiles";

Expand Down
2 changes: 1 addition & 1 deletion Chutzpah/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.4.0")]
4 changes: 2 additions & 2 deletions Chutzpah/TestContextBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public TestContext BuildContext(IEnumerable<PathInfo> files, TestOptions options
var fileCount = files.Count();

var allFilePathString = string.Join(",", files.Select(x => x.FullPath));
ChutzpahTracer.TraceInformation("Building test context for '{0}'", allFilePathString);
ChutzpahTracer.TraceInformation("Building test context for {0}", allFilePathString);

// Make sure all test paths have been resolved to real files
var missingPaths = files.Where(x => x.FullPath == null).ToList();
Expand Down Expand Up @@ -211,7 +211,7 @@ public bool TryBuildContext(IEnumerable<string> files, TestOptions options, out

public bool IsTestFile(string file, ChutzpahSettingsFileEnvironments environments = null)
{
ChutzpahTracer.TraceInformation("Determining if '{0}' might be a test file", file);
ChutzpahTracer.TraceInformation("Determining if {0} might be a test file", file);
if (string.IsNullOrWhiteSpace(file))
{
return false;
Expand Down
2 changes: 1 addition & 1 deletion Chutzpah/TestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ private void BuildTestContexts(
Parallel.ForEach(scriptPathGroups, parallelOptions, testFiles =>
{
var pathString = string.Join(",", testFiles.Select(x => x.FullPath));
ChutzpahTracer.TraceInformation("Building test context for {0}", pathString);
ChutzpahTracer.TraceInformation("Trying to build test context for {0}", pathString);

try
{
Expand Down
2 changes: 1 addition & 1 deletion ConsoleRunner/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.4.0")]
6 changes: 3 additions & 3 deletions Facts.Integration/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyFileVersion("4.2.3.0")]
// [assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyFileVersion("4.2.4.0")]
6 changes: 3 additions & 3 deletions Facts/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyFileVersion("4.2.3.0")]
// [assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyFileVersion("4.2.4.0")]
6 changes: 3 additions & 3 deletions PerfTester/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyFileVersion("4.2.3.0")]
// [assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyFileVersion("4.2.4.0")]
6 changes: 3 additions & 3 deletions VS.Common/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyFileVersion("4.2.3.0")]
// [assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyFileVersion("4.2.4.0")]
5 changes: 5 additions & 0 deletions VS2012.TestAdapter/ChutzpahTestDiscoverer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ public ChutzpahTestDiscoverer()

public void DiscoverTests(IEnumerable<string> sources, IDiscoveryContext discoveryContext, IMessageLogger logger, ITestCaseDiscoverySink discoverySink)
{
if (Environment.GetEnvironmentVariable("ATTACH_DEBUGGER_CHUTZPAH") != null)
{
Debugger.Launch();
}

ChutzpahTracer.TraceInformation("Begin Test Adapter Discover Tests");

var settingsProvider = discoveryContext.RunSettings.GetSettings(AdapterConstants.SettingsName) as ChutzpahAdapterSettingsProvider;
Expand Down
7 changes: 7 additions & 0 deletions VS2012.TestAdapter/ChutzpahTestExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
using Chutzpah.VS.Common;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter;
using System.Diagnostics;
using System;

namespace Chutzpah.VS2012.TestAdapter
{
Expand All @@ -25,6 +27,11 @@ public void Cancel()

public void RunTests(IEnumerable<string> sources, IRunContext runContext, IFrameworkHandle frameworkHandle)
{
if (Environment.GetEnvironmentVariable("ATTACH_DEBUGGER_CHUTZPAH") != null)
{
Debugger.Launch();
}

ChutzpahTracer.TraceInformation("Begin Test Adapter Run Tests");

var settingsProvider = runContext.RunSettings.GetSettings(AdapterConstants.SettingsName) as ChutzpahAdapterSettingsProvider;
Expand Down
6 changes: 3 additions & 3 deletions VS2012.TestAdapter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyFileVersion("4.2.3.0")]
// [assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyFileVersion("4.2.4.0")]
4 changes: 2 additions & 2 deletions VS2012/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyFileVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.4.0")]
[assembly: AssemblyFileVersion("4.2.4.0")]

[assembly: InternalsVisibleTo("VS2012_IntegrationTests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5d0d0037c1860700951dacd66f284af268c594cd703483d37e8eb3182e5d5dec2201673145ef8d2145a82a3156e5d22f675634b1bc328114f1431129e62e86517e323eb6b3f6ea6e813fba1f50bfddfecafa2d8ba5900c021a7e1b6b14d3f4f8d6b65173e38a9ce2143324d7e24deaf5a0aee6f00499a57ad2b2dc51fde9dbd")]
[assembly: InternalsVisibleTo("VS2012_UnitTests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5d0d0037c1860700951dacd66f284af268c594cd703483d37e8eb3182e5d5dec2201673145ef8d2145a82a3156e5d22f675634b1bc328114f1431129e62e86517e323eb6b3f6ea6e813fba1f50bfddfecafa2d8ba5900c021a7e1b6b14d3f4f8d6b65173e38a9ce2143324d7e24deaf5a0aee6f00499a57ad2b2dc51fde9dbd")]
2 changes: 1 addition & 1 deletion VS2012/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="VS11.Plugin.Chutzpah.67f38ef0-909a-40b5-b183-9477ad8c266a" Version="4.2.3" Language="en-US" Publisher="Matthew Manela" />
<Identity Id="VS11.Plugin.Chutzpah.67f38ef0-909a-40b5-b183-9477ad8c266a" Version="4.2.4" Language="en-US" Publisher="Matthew Manela" />
<DisplayName>Chutzpah Test Adapter for the Test Explorer</DisplayName>
<Description xml:space="preserve">Chutzpah adapter for the Visual Studio Unit Test Explorer. Chutzpah is an open source JavaScript test runner which enables you to run JavaScript unit tests from the command line and from inside of Visual Studio.</Description>
<MoreInfo>https://github.com/mmanela/chutzpah</MoreInfo>
Expand Down
2 changes: 1 addition & 1 deletion VisualStudioContextMenu/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly: AssemblyVersion("4.2.3.0")]
[assembly: AssemblyVersion("4.2.4.0")]



2 changes: 1 addition & 1 deletion VisualStudioContextMenu/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="0a3da9d8-a5b6-4fb9-b423-ef87ff203628" Version="4.2.3" Language="en-US" Publisher="Matthew Manela" />
<Identity Id="0a3da9d8-a5b6-4fb9-b423-ef87ff203628" Version="4.2.4" Language="en-US" Publisher="Matthew Manela" />
<DisplayName>Chutzpah Test Runner Context Menu Extension</DisplayName>
<Description>Chutzpah is an open source JavaScript test runner which helps you integrate JavaScript unit testing into your website. It enables you to run JavaScript unit tests from the command line and from inside of Visual Studio.</Description>
<License>EULA.rtf</License>
Expand Down

0 comments on commit 6e45c62

Please sign in to comment.