mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 21:46:38 +00:00
21 lines
466 B
C#
21 lines
466 B
C#
using FluentAssertions;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using SatelliteProvider.Common.Configs;
|
|
using SatelliteProvider.Common.DTO;
|
|
using SatelliteProvider.Services;
|
|
using Xunit;
|
|
|
|
namespace SatelliteProvider.Tests;
|
|
|
|
public class DummyTests
|
|
{
|
|
[Fact]
|
|
public async Task Dummy_ShouldWork()
|
|
{
|
|
Assert.Equal(1, 1);
|
|
}
|
|
}
|