15 lines
293 B
C#
15 lines
293 B
C#
// Copyright 2022 Valters Melnalksnis
|
|
// Licensed under the Apache License 2.0.
|
|
// See LICENSE file in the project root for full license information.
|
|
|
|
namespace VMelnalksnis.NordigenDotNet.Tests;
|
|
|
|
public sealed class PlaceholderTests
|
|
{
|
|
[Fact]
|
|
public void Pass()
|
|
{
|
|
Assert.True(true);
|
|
}
|
|
}
|