Created
December 18, 2015 02:29
-
-
Save kiyokura/657210392f9ee5fe828e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# テストクラス(ObjectNameTest.cs)を検索し単体テストがあるオブジェクトをリストアップするスクリプト | |
Get-ChildItem -Recurse -Include *.cs | Select-Object Name | Sort-Object { $_.Name } | ForEach-Object { $ret = $_.Name -replace ".cs$",""; $ret = $ret -replace "Test$",""; $ret } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment