mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-07 00:41:39 +07:00
Added a test to make sure that the base ruleset doesn't have any obvious bugs, so I don't shoot myself in the foot again
This commit is contained in:
@ -77,6 +77,14 @@ class BasicTests {
|
||||
UncivGame.Current.settings = GameSettings().apply { language = "Italian" }
|
||||
}
|
||||
|
||||
@Test
|
||||
fun baseRulesetHasNoBugs() {
|
||||
ruleset.modOptions.isBaseRuleset=true
|
||||
val modCheck = ruleset.checkModLinks()
|
||||
if(modCheck!="") println(modCheck)
|
||||
Assert.assertTrue(modCheck == "")
|
||||
}
|
||||
|
||||
|
||||
// @Test // This should NOT run as part of the test suite!
|
||||
// fun tryGetGithubTopicInfo(){
|
||||
|
Reference in New Issue
Block a user