WIP
This commit is contained in:
20
tests/Solar.Api.Tests/Controllers/SolarLogController.cs
Normal file
20
tests/Solar.Api.Tests/Controllers/SolarLogController.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Solar.Api.Models;
|
||||
|
||||
namespace Solar.Api.Tests.Controllers;
|
||||
|
||||
[Collection("Default")]
|
||||
public class SolarLogController
|
||||
{
|
||||
private readonly DefaultWebApplicationFactory applicationFactory;
|
||||
|
||||
public SolarLogController(DefaultWebApplicationFactory applicationFactory)
|
||||
{
|
||||
this.applicationFactory = applicationFactory;
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void GetDayDetails_returns_for_existing_data()
|
||||
{
|
||||
var client = applicationFactory.CreateClient();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user