20 lines
706 B
C#
20 lines
706 B
C#
|
using DD.Persistence.Repositories;
|
|||
|
using DD.Persistence.Services;
|
|||
|
using NSubstitute;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DD.Persistence.Repository.Test;
|
|||
|
public class TimestampedValuesServiceShould
|
|||
|
{
|
|||
|
private readonly ITimestampedValuesRepository timestampedValuesRepository = Substitute.For<ITimestampedValuesRepository>();
|
|||
|
private readonly IDataSchemeRepository dataSchemeRepository = Substitute.For<IDataSchemeRepository>();
|
|||
|
public TimestampedValuesServiceShould()
|
|||
|
{
|
|||
|
var timestampedValuesService = new TimestampedValuesService(timestampedValuesRepository, dataSchemeRepository);
|
|||
|
}
|
|||
|
}
|