A PowerShell Cmdlet for running Gallio.

Namespace:  Gallio.PowerShellCommands
Assembly:  Gallio.PowerShellCommands (in Gallio.PowerShellCommands.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public class RunGallioCommand : BaseCommand
Visual Basic (Declaration)
Public Class RunGallioCommand _
	Inherits BaseCommand

Remarks

Only the Files parameter is required.

Examples

There are severals ways to run this cmdlet:

CopyC#
# Makes the Gallio commands available
Add-PSSnapIn Gallio

# Runs a few assemblies and scripts.
Run-Gallio "[Path-to-assembly1]\TestAssembly1.dll","[Path-to-assembly2]\TestAssembly2.dll","[Path-to-test-script1]/TestScript1_spec.rb","[Path-to-test-script2]/TestScript2.xml" -f Category:UnitTests -rd C:\build\reports -rf html -ra zip

Inheritance Hierarchy

System..::.Object
  InternalCommand
    Cmdlet
      PSCmdlet
        BaseCommand
          Gallio.PowerShellCommands..::.RunGallioCommand

See Also