Skip to content

Commit

Permalink
update NJasmine
Browse files Browse the repository at this point in the history
  • Loading branch information
fschwiet committed Aug 12, 2012
1 parent 136b5c3 commit 40663f4
Show file tree
Hide file tree
Showing 96 changed files with 67 additions and 21 deletions.
13 changes: 6 additions & 7 deletions ManyConsole.Tests/ManyConsole.Tests.csproj
Expand Up @@ -42,16 +42,15 @@
<Reference Include="NDesk.Options">
<HintPath>..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll</HintPath>
</Reference>
<Reference Include="NJasmine, Version=0.2.4.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\NJasmine.NUnit.0.2.4.0\lib\NJasmine.dll</HintPath>
<Reference Include="NJasmine">
<HintPath>..\packages\NJasmine.NUnit.0.3.2.0\lib\NJasmine.dll</HintPath>
</Reference>
<Reference Include="NJasmine.NUnit">
<HintPath>..\packages\NJasmine.NUnit.0.2.4.0\lib\NJasmine.NUnit.dll</HintPath>
<HintPath>..\packages\NJasmine.NUnit.0.3.2.0\lib\NJasmine.NUnit.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.6.0.12051, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\NUnit.2.6.0.12054\lib\nunit.framework.dll</HintPath>
<Reference Include="nunit.framework">
<HintPath>..\packages\NUnit.2.6.1\lib\nunit.framework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="PowerAssert">
<HintPath>..\packages\PowerAssert.1.0.2\lib\PowerAssert.dll</HintPath>
Expand Down
6 changes: 3 additions & 3 deletions ManyConsole.Tests/packages.config
Expand Up @@ -2,8 +2,8 @@
<packages>
<package id="Castle.Core" version="3.0.0.4001" />
<package id="FakeItEasy" version="1.7.4507.61" />
<package id="NJasmine" version="0.2.4.0" />
<package id="NJasmine.NUnit" version="0.2.4.0" />
<package id="NUnit" version="2.6.0.12054" />
<package id="NJasmine" version="0.3.2.0" targetFramework="net40" />
<package id="NJasmine.NUnit" version="0.3.2.0" targetFramework="net40" />
<package id="NUnit" version="2.6.1" targetFramework="net40" />
<package id="PowerAssert" version="1.0.2" />
</packages>
2 changes: 1 addition & 1 deletion RunTestsInGUI.ps1
@@ -1 +1 @@
.\packages\NUnit.2.5.10.11092\tools\nunit.exe .\ManyConsole.Tests\bin\Debug\ManyConsole.Tests.dll
.\packages\NUnit.Runners.2.6.1\tools\nunit.exe .\ManyConsole.Tests\bin\Debug\ManyConsole.Tests.dll
2 changes: 1 addition & 1 deletion default.ps1
Expand Up @@ -49,7 +49,7 @@ task Build -depends Cleanup,GenerateAssemblyInfo {
}

task RunTests {
exec { & "$baseDirectory\packages\NUnit.Runners.2.6.0.12051\tools\nunit-console.exe" "$buildDirectory\ManyConsole.Tests.dll" -xml:"$buildDirectory\TestResults.xml" }
exec { & "$baseDirectory\packages\NUnit.Runners.2.6.1\tools\nunit-console.exe" "$buildDirectory\ManyConsole.Tests.dll" -xml:"$buildDirectory\TestResults.xml" }
}

task BuildNuget -depends Build {
Expand Down
Binary file removed packages/NJasmine.0.2.4.0/NJasmine.0.2.4.0.nupkg
Binary file not shown.
Binary file removed packages/NJasmine.0.2.4.0/lib/NJasmine.dll
Binary file not shown.
Binary file removed packages/NJasmine.0.2.4.0/lib/NJasmine.pdb
Binary file not shown.
Binary file not shown.
Binary file added packages/NJasmine.0.3.2.0/lib/NJasmine.dll
Binary file not shown.
Binary file added packages/NJasmine.0.3.2.0/lib/NJasmine.pdb
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed packages/NJasmine.NUnit.0.2.4.0/lib/NJasmine.dll
Binary file not shown.
Binary file removed packages/NJasmine.NUnit.0.2.4.0/lib/NJasmine.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added packages/NJasmine.NUnit.0.3.2.0/lib/NJasmine.dll
Binary file not shown.
Binary file added packages/NJasmine.NUnit.0.3.2.0/lib/NJasmine.pdb
Binary file not shown.
@@ -1,7 +1,7 @@

param($installPath, $toolsPath, $package, $project)

$nunitVersion = "2.6.0.12054";
$nunitVersion = "2.6.1";
$nunitRunnerPattern = "NUnit.Runners." + $nunitVersion.substring(0, $nunitVersion.lastIndexOf(".")) + ".*"

$nunitPaths = gci (join-path $installPath "..") $nunitRunnerPattern | % { $_.fullname }
Expand Down
Binary file removed packages/NUnit.2.6.0.12054/NUnit.2.6.0.12054.nupkg
Binary file not shown.
Binary file removed packages/NUnit.2.6.0.12054/lib/nunit.framework.dll
Binary file not shown.
Binary file added packages/NUnit.2.6.1/NUnit.2.6.1.nupkg
Binary file not shown.
Binary file added packages/NUnit.2.6.1/lib/nunit.framework.dll
Binary file not shown.
Expand Up @@ -551,14 +551,17 @@
</member>
<member name="T:NUnit.Framework.SetUpAttribute">
<summary>
Attribute used to mark a class that contains one-time SetUp
and/or TearDown methods that apply to all the tests in a
namespace or an assembly.
SetUpAttribute is used in a TestFixture to identify a method
that is called immediately before each test is run. It is
also used in a SetUpFixture to identify the method that is
called once, before any of the subordinate tests are run.
</summary>
</member>
<member name="T:NUnit.Framework.SetUpFixtureAttribute">
<summary>
SetUpFixtureAttribute is used to identify a SetUpFixture
Attribute used to mark a class that contains one-time SetUp
and/or TearDown methods that apply to all the tests in a
namespace or an assembly.
</summary>
</member>
<member name="T:NUnit.Framework.SuiteAttribute">
Expand All @@ -569,9 +572,11 @@
</member>
<member name="T:NUnit.Framework.TearDownAttribute">
<summary>
Attribute used to identify a method that is called
immediately after each test is run. The method is
guaranteed to be called, even if an exception is thrown.
Attribute used in a TestFixture to identify a method that is
called immediately after each test is run. It is also used
in a SetUpFixture to identify the method that is called once,
after all subordinate tests have run. In either case, the method
is guaranteed to be called, even if an exception is thrown.
</summary>
</member>
<member name="T:NUnit.Framework.TestActionAttribute">
Expand Down Expand Up @@ -4545,7 +4550,7 @@
</member>
<member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
<summary>
Construct a SomeItemsConstraint on top of an existing constraint
Construct a NoItemConstraint on top of an existing constraint
</summary>
<param name="itemConstraint"></param>
</member>
Expand Down Expand Up @@ -4729,6 +4734,48 @@
Resolve the current expression to a Constraint
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
<summary>
This operator creates a constraint that is satisfied only if both
argument constraints are satisfied.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
<summary>
This operator creates a constraint that is satisfied only if both
argument constraints are satisfied.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseAnd(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)">
<summary>
This operator creates a constraint that is satisfied only if both
argument constraints are satisfied.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
<summary>
This operator creates a constraint that is satisfied if either
of the argument constraints is satisfied.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.ResolvableConstraintExpression,NUnit.Framework.Constraints.Constraint)">
<summary>
This operator creates a constraint that is satisfied if either
of the argument constraints is satisfied.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.ResolvableConstraintExpression)">
<summary>
This operator creates a constraint that is satisfied if either
of the argument constraints is satisfied.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.op_LogicalNot(NUnit.Framework.Constraints.ResolvableConstraintExpression)">
<summary>
This operator creates a constraint that is satisfied if the
argument constraint is not satisfied.
</summary>
</member>
<member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.And">
<summary>
Appends an And Operator to the expression
Expand Down
File renamed without changes.
Binary file removed packages/NUnit.Runners.2.6.0.12051/Logo.ico
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 40663f4

Please sign in to comment.