mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
27 lines
722 B
C#
27 lines
722 B
C#
|
using FabAccessAPI;
|
|||
|
using FabAccessAPI.Schema;
|
|||
|
using NUnit.Framework;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FabAccessAPI_Test.API_TestEnv
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class User_Test
|
|||
|
{
|
|||
|
//[TestCase("Admin1")]
|
|||
|
//[Order(1)]
|
|||
|
//public async Task InfoInterface(string username)
|
|||
|
//{
|
|||
|
// API api = new API();
|
|||
|
// ConnectionData connectionData = TestEnv.CreateConnetionData(username);
|
|||
|
// await api.Connect(connectionData);
|
|||
|
|
|||
|
// User user = await api.Session.UserSystem.Info.GetUserSelf().ConfigureAwait(false);
|
|||
|
|
|||
|
// bool result = !((User.InfoInterface_Proxy)user.Info).IsNull;
|
|||
|
|
|||
|
// await api.Disconnect();
|
|||
|
//}
|
|||
|
}
|
|||
|
}
|