2023-04-08 09:30:59 -07:00
|
|
|
using System.Net.Sockets;
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
2023-03-31 23:00:15 -07:00
|
|
|
namespace Newsbot.Collector.Tests;
|
|
|
|
|
|
|
|
public static class TestHelper
|
|
|
|
{
|
2023-04-08 09:30:59 -07:00
|
|
|
public static IConfiguration LoadConfig()
|
|
|
|
{
|
|
|
|
return new ConfigurationBuilder()
|
|
|
|
.AddJsonFile("appsettings.json", false)
|
|
|
|
.Build();
|
|
|
|
}
|
2023-03-31 23:00:15 -07:00
|
|
|
}
|