pub const POWERSHELL_TOOL_NAME: &str = "PowerShell";
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_powershell_tool_name() {
assert_eq!(POWERSHELL_TOOL_NAME, "PowerShell");
}
#[test]
fn test_powershell_tool_name_not_empty() {
assert!(!POWERSHELL_TOOL_NAME.is_empty());
}
}