DocSpace-buildtools/common/Tests/ASC.Web.Api.Tests/Infrastructure/ApiTestsData.cs

14 lines
340 B
C#
Raw Normal View History

2021-07-19 12:12:40 +00:00
using System.Collections.Generic;
using NUnit.Framework;
namespace ASC.Web.Api.Tests.Infrastructure
{
class ApiTestsData
{
public static IEnumerable<TestCaseData> UserForWizard()
{
yield return new TestCaseData("testuser@onlyoffice.com", "11111111", "en-US", "UTC", "", "", false);
}
}
}