2022-06-14 08:25:51 +03:00
|
|
|
// Copyright 2022 Valters Melnalksnis
|
|
|
|
|
// Licensed under the Apache License 2.0.
|
|
|
|
|
// See LICENSE file in the project root for full license information.
|
2022-06-14 08:17:49 +03:00
|
|
|
|
|
|
|
|
namespace VMelnalksnis.NordigenDotNet.Tests;
|
|
|
|
|
|
|
|
|
|
public sealed class PlaceholderTests
|
|
|
|
|
{
|
|
|
|
|
[Fact]
|
|
|
|
|
public void Pass()
|
|
|
|
|
{
|
2022-06-14 08:25:51 +03:00
|
|
|
Assert.True(true);
|
2022-06-14 08:17:49 +03:00
|
|
|
}
|
|
|
|
|
}
|