13 lines
217 B
C#
13 lines
217 B
C#
namespace Giants.Core.Tests;
|
|
|
|
using Giants.Application;
|
|
|
|
public class ApplicationTests
|
|
{
|
|
[Fact]
|
|
public void ApplicationCreationExample()
|
|
{
|
|
GiantApplication app = new GiantApplication();
|
|
}
|
|
}
|