mirror of https://github.com/Squidex/squidex.git
39 changed files with 193 additions and 86 deletions
@ -0,0 +1,11 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Squidex.Infrastructure |
|||
{ |
|||
public sealed class UserToken |
|||
{ |
|||
} |
|||
} |
|||
@ -0,0 +1,17 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Threading.Tasks; |
|||
using Xunit; |
|||
|
|||
namespace Squidex.Infrastructure |
|||
{ |
|||
public class UserTokenTests |
|||
{ |
|||
[Fact] |
|||
public void Should_parse_user_token_from_string() |
|||
{ |
|||
var token = UserToken.Parse("") |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue