/ src / modules / cmdpal / Tests / Microsoft.CmdPal.Ext.WebSearch.UnitTests / MockBrowserInfoService.cs
MockBrowserInfoService.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using Microsoft.CmdPal.Ext.WebSearch.Helpers.Browser; 6 7 namespace Microsoft.CmdPal.Ext.WebSearch.UnitTests; 8 9 public class MockBrowserInfoService : IBrowserInfoService 10 { 11 public BrowserInfo GetDefaultBrowser() => new() { Name = "mocked browser", Path = "C:\\mockery\\mock.exe" }; 12 }