mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
15 lines
210 B
C#
15 lines
210 B
C#
using Dalamud.Bootstrap;
|
|
using Xunit;
|
|
|
|
namespace Dalamud.Testing
|
|
{
|
|
public class BootstrapTests
|
|
{
|
|
[Fact]
|
|
public void Test1()
|
|
{
|
|
Bootstrapper.Test();
|
|
}
|
|
|
|
}
|
|
}
|