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

21 lines
579 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2021-07-19 12:12:40 +00:00
using NUnit.Framework;
namespace ASC.Web.Api.Tests.Infrastructure
{
class ApiTestsData
{
public static IEnumerable<TestCaseData> UserForWizard()
{
2021-07-21 12:44:20 +00:00
yield return new TestCaseData("testuser@onlyoffice.com", "00000000", "en-US", "UTC", "", "", false);
2021-07-20 10:24:19 +00:00
}
2021-07-21 12:44:20 +00:00
public static IEnumerable<TestCaseData> WebStudioSettingsData()
{
yield return new TestCaseData(1, Guid.Parse("00000000-0000-0000-0000-000000000000"), "{\"Completed\":false}");
}
2021-07-19 12:12:40 +00:00
}
}