mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-11 12:42:26 +00:00
11 lines
No EOL
374 B
C#
11 lines
No EOL
374 B
C#
using ProjectLighthouse.Types;
|
|
using Xunit;
|
|
|
|
namespace ProjectLighthouse.Tests {
|
|
public sealed class DatabaseFact : FactAttribute {
|
|
public DatabaseFact() {
|
|
ServerSettings.DbConnectionString = "server=127.0.0.1;uid=root;pwd=lighthouse;database=lighthouse";
|
|
if(!ServerSettings.DbConnected) Skip = "Database not available";
|
|
}
|
|
}
|
|
} |