-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest-Module.ps1
More file actions
33 lines (24 loc) · 1.13 KB
/
Test-Module.ps1
File metadata and controls
33 lines (24 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2021 v5.8.183
Created on: 21.04.2026 15:37
Created by: Janke
Organization: dtcSoftware
Filename: Test-Module.ps1
===========================================================================
.DESCRIPTION
The Test-Module.ps1 script lets you test the functions and other features of
your module in your PowerShell Studio module project. It's part of your project,
but it is not included in your module.
In this test script, import the module (be careful to import the correct version)
and write commands that test the module features. You can include Pester
tests, too.
To run the script, click Run or Run in Console. Or, when working on any file
in the project, click Home\Run or Home\Run in Console, or in the Project pane,
right-click the project name, and then click Run Project.
#>
Clear-Host
#Explicitly import the module for testing
Import-Module 'sqmSQLTool' -Force
Get-Command -Module sqmSQLTool -ShowCommandInfo | Sort-Object Name | Format-Table Name