gitextract_imkf2kq6/ ├── .gitattributes ├── .gitignore ├── DbgShell/ │ ├── x64/ │ │ ├── DbgShell.exe.config │ │ ├── DbgShell.pdb │ │ ├── DbgShellExt.iobj │ │ ├── DbgShellExt.ipdb │ │ ├── DbgShellExt.pdb │ │ ├── DbgShellTest/ │ │ │ ├── CoCreateShim.iobj │ │ │ ├── CoCreateShim.ipdb │ │ │ ├── CoCreateShim.pdb │ │ │ ├── DbgShellTest.psd1 │ │ │ ├── DbgShellTest.psm1 │ │ │ ├── Pester/ │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Functions/ │ │ │ │ │ ├── Assertions/ │ │ │ │ │ │ ├── Be.Tests.ps1 │ │ │ │ │ │ ├── Be.ps1 │ │ │ │ │ │ ├── BeGreaterThan.Tests.ps1 │ │ │ │ │ │ ├── BeGreaterThan.ps1 │ │ │ │ │ │ ├── BeLessThan.Tests.ps1 │ │ │ │ │ │ ├── BeLessThan.ps1 │ │ │ │ │ │ ├── BeNullOrEmpty.Tests.ps1 │ │ │ │ │ │ ├── BeNullOrEmpty.ps1 │ │ │ │ │ │ ├── BeOfType.Tests.ps1 │ │ │ │ │ │ ├── BeOfType.ps1 │ │ │ │ │ │ ├── Contain.Tests.ps1 │ │ │ │ │ │ ├── Contain.ps1 │ │ │ │ │ │ ├── ContainExactly.Tests.ps1 │ │ │ │ │ │ ├── ContainExactly.ps1 │ │ │ │ │ │ ├── Exist.Tests.ps1 │ │ │ │ │ │ ├── Exist.ps1 │ │ │ │ │ │ ├── Match.Tests.ps1 │ │ │ │ │ │ ├── Match.ps1 │ │ │ │ │ │ ├── MatchExactly.Tests.ps1 │ │ │ │ │ │ ├── MatchExactly.ps1 │ │ │ │ │ │ ├── PesterThrow.Tests.ps1 │ │ │ │ │ │ ├── PesterThrow.ps1 │ │ │ │ │ │ ├── Set-TestInconclusive.ps1 │ │ │ │ │ │ ├── Should.Tests.ps1 │ │ │ │ │ │ ├── Should.ps1 │ │ │ │ │ │ └── Test-Assertion.ps1 │ │ │ │ │ ├── BreakAndContinue.Tests.ps1 │ │ │ │ │ ├── Context.Tests.ps1 │ │ │ │ │ ├── Context.ps1 │ │ │ │ │ ├── Coverage.Tests.ps1 │ │ │ │ │ ├── Coverage.ps1 │ │ │ │ │ ├── Describe.Tests.ps1 │ │ │ │ │ ├── Describe.ps1 │ │ │ │ │ ├── GlobalMock-A.Tests.ps1 │ │ │ │ │ ├── GlobalMock-B.Tests.ps1 │ │ │ │ │ ├── In.Tests.ps1 │ │ │ │ │ ├── In.ps1 │ │ │ │ │ ├── InModuleScope.Tests.ps1 │ │ │ │ │ ├── InModuleScope.ps1 │ │ │ │ │ ├── It.Tests.ps1 │ │ │ │ │ ├── It.ps1 │ │ │ │ │ ├── Mock.Tests.ps1 │ │ │ │ │ ├── Mock.ps1 │ │ │ │ │ ├── New-Fixture.Tests.ps1 │ │ │ │ │ ├── New-Fixture.ps1 │ │ │ │ │ ├── PesterState.Tests.ps1 │ │ │ │ │ ├── PesterState.ps1 │ │ │ │ │ ├── SetupTeardown.Tests.ps1 │ │ │ │ │ ├── SetupTeardown.ps1 │ │ │ │ │ ├── TestDrive.Tests.ps1 │ │ │ │ │ ├── TestDrive.ps1 │ │ │ │ │ ├── TestResults.Tests.ps1 │ │ │ │ │ ├── TestResults.ps1 │ │ │ │ │ └── TestsRunningInCleanRunspace.Tests.ps1 │ │ │ │ ├── LICENSE │ │ │ │ ├── Pester.Tests.ps1 │ │ │ │ ├── Pester.psd1 │ │ │ │ ├── Pester.psm1 │ │ │ │ ├── README.md │ │ │ │ ├── Snippets/ │ │ │ │ │ ├── Context.snippets.ps1xml │ │ │ │ │ ├── Describe.snippets.ps1xml │ │ │ │ │ ├── It.snippets.ps1xml │ │ │ │ │ ├── ShouldBe.snippets.ps1xml │ │ │ │ │ ├── ShouldBeGreaterThan.snippets.ps1xml │ │ │ │ │ ├── ShouldBeLessThan.snippets.ps1xml │ │ │ │ │ ├── ShouldBeNullOrEmpty.snippets.ps1xml │ │ │ │ │ ├── ShouldContain.snippets.ps1xml │ │ │ │ │ ├── ShouldExist.snippets.ps1xml │ │ │ │ │ ├── ShouldMatch.snippets.ps1xml │ │ │ │ │ ├── ShouldNotBe.snippets.ps1xml │ │ │ │ │ ├── ShouldNotBeNullOrEmpty.snippets.ps1xml │ │ │ │ │ ├── ShouldNotContain.snippets.ps1xml │ │ │ │ │ ├── ShouldNotExist.snippets.ps1xml │ │ │ │ │ ├── ShouldNotMatch.snippets.ps1xml │ │ │ │ │ ├── ShouldNotThrow.snippets.ps1xml │ │ │ │ │ └── ShouldThrow.snippets.ps1xml │ │ │ │ ├── en-US/ │ │ │ │ │ ├── about_BeforeEach_AfterEach.help.txt │ │ │ │ │ ├── about_Mocking.help.txt │ │ │ │ │ ├── about_Pester.help.txt │ │ │ │ │ ├── about_TestDrive.help.txt │ │ │ │ │ └── about_should.help.txt │ │ │ │ └── nunit_schema_2.5.xsd │ │ │ ├── TestManagedCommon.pdb │ │ │ ├── TestManagedConsoleApp.exe.config │ │ │ ├── TestManagedConsoleApp.pdb │ │ │ ├── TestNativeConsoleApp.exp │ │ │ ├── TestNativeConsoleApp.iobj │ │ │ ├── TestNativeConsoleApp.ipdb │ │ │ ├── TestNativeConsoleApp.lib │ │ │ ├── TestNativeConsoleApp.pdb │ │ │ ├── Tests/ │ │ │ │ ├── Disasm.Tests.ps1 │ │ │ │ ├── Dumps.Tests.ps1 │ │ │ │ ├── Gu.Tests.ps1 │ │ │ │ ├── Kill.Tests.ps1 │ │ │ │ ├── MultiProcDetachAttach.Tests.ps1 │ │ │ │ ├── NamespaceTests/ │ │ │ │ │ ├── ContentTests.ps1 │ │ │ │ │ ├── CopyItem.ps1 │ │ │ │ │ ├── DriveTests.ps1 │ │ │ │ │ ├── Globbing.ps1 │ │ │ │ │ ├── MoveItem.ps1 │ │ │ │ │ ├── ProviderTests.metadata │ │ │ │ │ └── RenameItem.ps1 │ │ │ │ ├── ReentrantConversion.Tests.ps1 │ │ │ │ ├── StlTypeConversion.Tests.ps1 │ │ │ │ ├── TemplateMatching.Tests.ps1 │ │ │ │ ├── TrickySymbolValueConversions.Tests.ps1 │ │ │ │ ├── ValueConverterQueries.Tests.ps1 │ │ │ │ ├── VariantConversion.Tests.ps1 │ │ │ │ └── WriteMem.Tests.ps1 │ │ │ ├── v2Lib.pdb │ │ │ └── v4Lib.pdb │ │ ├── Debugger/ │ │ │ ├── DbgEngWrapper.dll.metagen │ │ │ ├── DbgEngWrapper.pdb │ │ │ ├── DbgNativeUtil.iobj │ │ │ ├── DbgNativeUtil.ipdb │ │ │ ├── DbgNativeUtil.pdb │ │ │ ├── DbgProvider.pdb │ │ │ ├── Debugger.ArgumentCompleters.ps1 │ │ │ ├── Debugger.ArgumentCompleters.shared.ps1 │ │ │ ├── Debugger.Converters.COM.ps1 │ │ │ ├── Debugger.Converters.NT.ps1 │ │ │ ├── Debugger.Converters.WinRT.ps1 │ │ │ ├── Debugger.Converters.stl.ps1 │ │ │ ├── Debugger.Converters.win32.ps1 │ │ │ ├── Debugger.Converters.wrl.ps1 │ │ │ ├── Debugger.Converters.xaml.ps1 │ │ │ ├── Debugger.DebuggeeTypes.NT.psfmt │ │ │ ├── Debugger.DebuggeeTypes.Win32.psfmt │ │ │ ├── Debugger.DebuggeeTypes.atl.psfmt │ │ │ ├── Debugger.DebuggeeTypes.clr.psfmt │ │ │ ├── Debugger.DebuggeeTypes.psfmt │ │ │ ├── Debugger.DebuggeeTypes.wrl.psfmt │ │ │ ├── Debugger.DebuggeeTypes.xaml.psfmt │ │ │ ├── Debugger.Format.Color.ps1xml │ │ │ ├── Debugger.Format.ps1xml │ │ │ ├── Debugger.Formatting.psm1 │ │ │ ├── Debugger.psd1 │ │ │ ├── Debugger.psfmt │ │ │ ├── Debugger.psm1 │ │ │ ├── FmtUtils.ps1 │ │ │ ├── GetPsContextFunc.ps1 │ │ │ ├── KernelMode.ps1 │ │ │ ├── Microsoft.Diagnostics.Runtime.pdb │ │ │ ├── Microsoft.Diagnostics.Runtime.xml │ │ │ ├── OtherUtils.ps1 │ │ │ ├── Types.ps1xml │ │ │ └── en-us/ │ │ │ ├── DbgProvider.dll-Help.xml │ │ │ ├── about_Color.help.txt │ │ │ ├── about_CustomFormatting.help.txt │ │ │ ├── about_CustomSymbolValueConversion.help.txt │ │ │ ├── about_DbgShell.help.txt │ │ │ ├── about_DbgShell_GettingStarted.help.txt │ │ │ ├── about_DerivedTypeDetection.help.txt │ │ │ ├── about_HowTo_Write_a_Symbol_Value_Converter.help.txt │ │ │ └── about_MemoryCommands.help.txt │ │ ├── TypeInfoDebugging/ │ │ │ └── TypeInfoDebugging.psm1 │ │ └── doc/ │ │ ├── Color.md │ │ ├── CustomFormattingEngine.md │ │ ├── DbgEngWrapper.md │ │ ├── DerivedTypeDetection.md │ │ ├── GettingStarted.md │ │ └── SymbolValueConversion.md │ └── x86/ │ ├── DbgShell.exe.config │ ├── DbgShell.pdb │ ├── DbgShellExt.iobj │ ├── DbgShellExt.ipdb │ ├── DbgShellExt.pdb │ ├── DbgShellTest/ │ │ ├── CoCreateShim.iobj │ │ ├── CoCreateShim.ipdb │ │ ├── CoCreateShim.pdb │ │ ├── DbgShellTest.psd1 │ │ ├── DbgShellTest.psm1 │ │ ├── Pester/ │ │ │ ├── CHANGELOG.md │ │ │ ├── Functions/ │ │ │ │ ├── Assertions/ │ │ │ │ │ ├── Be.Tests.ps1 │ │ │ │ │ ├── Be.ps1 │ │ │ │ │ ├── BeGreaterThan.Tests.ps1 │ │ │ │ │ ├── BeGreaterThan.ps1 │ │ │ │ │ ├── BeLessThan.Tests.ps1 │ │ │ │ │ ├── BeLessThan.ps1 │ │ │ │ │ ├── BeNullOrEmpty.Tests.ps1 │ │ │ │ │ ├── BeNullOrEmpty.ps1 │ │ │ │ │ ├── BeOfType.Tests.ps1 │ │ │ │ │ ├── BeOfType.ps1 │ │ │ │ │ ├── Contain.Tests.ps1 │ │ │ │ │ ├── Contain.ps1 │ │ │ │ │ ├── ContainExactly.Tests.ps1 │ │ │ │ │ ├── ContainExactly.ps1 │ │ │ │ │ ├── Exist.Tests.ps1 │ │ │ │ │ ├── Exist.ps1 │ │ │ │ │ ├── Match.Tests.ps1 │ │ │ │ │ ├── Match.ps1 │ │ │ │ │ ├── MatchExactly.Tests.ps1 │ │ │ │ │ ├── MatchExactly.ps1 │ │ │ │ │ ├── PesterThrow.Tests.ps1 │ │ │ │ │ ├── PesterThrow.ps1 │ │ │ │ │ ├── Set-TestInconclusive.ps1 │ │ │ │ │ ├── Should.Tests.ps1 │ │ │ │ │ ├── Should.ps1 │ │ │ │ │ └── Test-Assertion.ps1 │ │ │ │ ├── BreakAndContinue.Tests.ps1 │ │ │ │ ├── Context.Tests.ps1 │ │ │ │ ├── Context.ps1 │ │ │ │ ├── Coverage.Tests.ps1 │ │ │ │ ├── Coverage.ps1 │ │ │ │ ├── Describe.Tests.ps1 │ │ │ │ ├── Describe.ps1 │ │ │ │ ├── GlobalMock-A.Tests.ps1 │ │ │ │ ├── GlobalMock-B.Tests.ps1 │ │ │ │ ├── In.Tests.ps1 │ │ │ │ ├── In.ps1 │ │ │ │ ├── InModuleScope.Tests.ps1 │ │ │ │ ├── InModuleScope.ps1 │ │ │ │ ├── It.Tests.ps1 │ │ │ │ ├── It.ps1 │ │ │ │ ├── Mock.Tests.ps1 │ │ │ │ ├── Mock.ps1 │ │ │ │ ├── New-Fixture.Tests.ps1 │ │ │ │ ├── New-Fixture.ps1 │ │ │ │ ├── PesterState.Tests.ps1 │ │ │ │ ├── PesterState.ps1 │ │ │ │ ├── SetupTeardown.Tests.ps1 │ │ │ │ ├── SetupTeardown.ps1 │ │ │ │ ├── TestDrive.Tests.ps1 │ │ │ │ ├── TestDrive.ps1 │ │ │ │ ├── TestResults.Tests.ps1 │ │ │ │ ├── TestResults.ps1 │ │ │ │ └── TestsRunningInCleanRunspace.Tests.ps1 │ │ │ ├── LICENSE │ │ │ ├── Pester.Tests.ps1 │ │ │ ├── Pester.psd1 │ │ │ ├── Pester.psm1 │ │ │ ├── README.md │ │ │ ├── Snippets/ │ │ │ │ ├── Context.snippets.ps1xml │ │ │ │ ├── Describe.snippets.ps1xml │ │ │ │ ├── It.snippets.ps1xml │ │ │ │ ├── ShouldBe.snippets.ps1xml │ │ │ │ ├── ShouldBeGreaterThan.snippets.ps1xml │ │ │ │ ├── ShouldBeLessThan.snippets.ps1xml │ │ │ │ ├── ShouldBeNullOrEmpty.snippets.ps1xml │ │ │ │ ├── ShouldContain.snippets.ps1xml │ │ │ │ ├── ShouldExist.snippets.ps1xml │ │ │ │ ├── ShouldMatch.snippets.ps1xml │ │ │ │ ├── ShouldNotBe.snippets.ps1xml │ │ │ │ ├── ShouldNotBeNullOrEmpty.snippets.ps1xml │ │ │ │ ├── ShouldNotContain.snippets.ps1xml │ │ │ │ ├── ShouldNotExist.snippets.ps1xml │ │ │ │ ├── ShouldNotMatch.snippets.ps1xml │ │ │ │ ├── ShouldNotThrow.snippets.ps1xml │ │ │ │ └── ShouldThrow.snippets.ps1xml │ │ │ ├── en-US/ │ │ │ │ ├── about_BeforeEach_AfterEach.help.txt │ │ │ │ ├── about_Mocking.help.txt │ │ │ │ ├── about_Pester.help.txt │ │ │ │ ├── about_TestDrive.help.txt │ │ │ │ └── about_should.help.txt │ │ │ └── nunit_schema_2.5.xsd │ │ ├── TestManagedCommon.pdb │ │ ├── TestManagedConsoleApp.exe.config │ │ ├── TestManagedConsoleApp.pdb │ │ ├── TestNativeConsoleApp.exp │ │ ├── TestNativeConsoleApp.iobj │ │ ├── TestNativeConsoleApp.ipdb │ │ ├── TestNativeConsoleApp.lib │ │ ├── TestNativeConsoleApp.pdb │ │ ├── Tests/ │ │ │ ├── Disasm.Tests.ps1 │ │ │ ├── Dumps.Tests.ps1 │ │ │ ├── Gu.Tests.ps1 │ │ │ ├── Kill.Tests.ps1 │ │ │ ├── MultiProcDetachAttach.Tests.ps1 │ │ │ ├── NamespaceTests/ │ │ │ │ ├── ContentTests.ps1 │ │ │ │ ├── CopyItem.ps1 │ │ │ │ ├── DriveTests.ps1 │ │ │ │ ├── Globbing.ps1 │ │ │ │ ├── MoveItem.ps1 │ │ │ │ ├── ProviderTests.metadata │ │ │ │ └── RenameItem.ps1 │ │ │ ├── ReentrantConversion.Tests.ps1 │ │ │ ├── StlTypeConversion.Tests.ps1 │ │ │ ├── TemplateMatching.Tests.ps1 │ │ │ ├── TrickySymbolValueConversions.Tests.ps1 │ │ │ ├── ValueConverterQueries.Tests.ps1 │ │ │ ├── VariantConversion.Tests.ps1 │ │ │ └── WriteMem.Tests.ps1 │ │ ├── v2Lib.pdb │ │ └── v4Lib.pdb │ ├── Debugger/ │ │ ├── DbgEngWrapper.dll.metagen │ │ ├── DbgEngWrapper.pdb │ │ ├── DbgNativeUtil.iobj │ │ ├── DbgNativeUtil.ipdb │ │ ├── DbgNativeUtil.pdb │ │ ├── DbgProvider.pdb │ │ ├── Debugger.ArgumentCompleters.ps1 │ │ ├── Debugger.ArgumentCompleters.shared.ps1 │ │ ├── Debugger.Converters.COM.ps1 │ │ ├── Debugger.Converters.NT.ps1 │ │ ├── Debugger.Converters.WinRT.ps1 │ │ ├── Debugger.Converters.stl.ps1 │ │ ├── Debugger.Converters.win32.ps1 │ │ ├── Debugger.Converters.wrl.ps1 │ │ ├── Debugger.Converters.xaml.ps1 │ │ ├── Debugger.DebuggeeTypes.NT.psfmt │ │ ├── Debugger.DebuggeeTypes.Win32.psfmt │ │ ├── Debugger.DebuggeeTypes.atl.psfmt │ │ ├── Debugger.DebuggeeTypes.clr.psfmt │ │ ├── Debugger.DebuggeeTypes.psfmt │ │ ├── Debugger.DebuggeeTypes.wrl.psfmt │ │ ├── Debugger.DebuggeeTypes.xaml.psfmt │ │ ├── Debugger.Format.Color.ps1xml │ │ ├── Debugger.Format.ps1xml │ │ ├── Debugger.Formatting.psm1 │ │ ├── Debugger.psd1 │ │ ├── Debugger.psfmt │ │ ├── Debugger.psm1 │ │ ├── FmtUtils.ps1 │ │ ├── GetPsContextFunc.ps1 │ │ ├── KernelMode.ps1 │ │ ├── Microsoft.Diagnostics.Runtime.pdb │ │ ├── Microsoft.Diagnostics.Runtime.xml │ │ ├── OtherUtils.ps1 │ │ ├── Types.ps1xml │ │ └── en-us/ │ │ ├── DbgProvider.dll-Help.xml │ │ ├── about_Color.help.txt │ │ ├── about_CustomFormatting.help.txt │ │ ├── about_CustomSymbolValueConversion.help.txt │ │ ├── about_DbgShell.help.txt │ │ ├── about_DbgShell_GettingStarted.help.txt │ │ ├── about_DerivedTypeDetection.help.txt │ │ ├── about_HowTo_Write_a_Symbol_Value_Converter.help.txt │ │ └── about_MemoryCommands.help.txt │ ├── TypeInfoDebugging/ │ │ └── TypeInfoDebugging.psm1 │ └── doc/ │ ├── Color.md │ ├── CustomFormattingEngine.md │ ├── DbgEngWrapper.md │ ├── DerivedTypeDetection.md │ ├── GettingStarted.md │ └── SymbolValueConversion.md └── Readme.md