19 lines
399 B
C#
19 lines
399 B
C#
|
using Newsbot.Collector.Database.Repositories;
|
||
|
using Newsbot.Collector.Domain.Models;
|
||
|
|
||
|
namespace Newsbot.Collector.Tests.Tables;
|
||
|
|
||
|
public class SettingsTableTests
|
||
|
{
|
||
|
[Fact]
|
||
|
public void New()
|
||
|
{
|
||
|
var client = new SettingsTable("");
|
||
|
client.New(new SettingModel
|
||
|
{
|
||
|
Key = "Unit Testing",
|
||
|
Value = "Unit",
|
||
|
Options = ""
|
||
|
});
|
||
|
}
|
||
|
}
|