2019-01-21 17:33:20 +08:00
|
|
|
|
using Xunit;
|
|
|
|
|
|
2019-05-15 00:22:13 +08:00
|
|
|
|
namespace Bootstrap.Admin.Api.SqlServer
|
2019-01-21 17:33:20 +08:00
|
|
|
|
{
|
|
|
|
|
public class NotificationsTest : ControllerTest
|
|
|
|
|
{
|
|
|
|
|
public NotificationsTest(BAWebHost factory) : base(factory, "api/Notifications") { }
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public async void Get_Ok()
|
|
|
|
|
{
|
|
|
|
|
var resp = await Client.GetAsJsonAsync<object>();
|
|
|
|
|
Assert.NotNull(resp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|