Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
704 B

// ==========================================================================
// ClientKeyGeneratorTests.cs
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex Group
// All rights reserved.
// ==========================================================================
using Xunit;
namespace Squidex.Write.Apps
{
public class ClientKeyGeneratorTests
{
private readonly ClientKeyGenerator sut = new ClientKeyGenerator();
[Fact]
public void Should_create_very_long_client_key()
{
var key = sut.GenerateKey();
Assert.Equal(44, key.Length);
}
}
}