forked from ldtteam/minecolonies
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to prepare for the build system checking PRs. (ldtteam#2582)
- Loading branch information
1 parent
8e40eb9
commit 9067942
Showing
4 changed files
with
49 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# Minecolonies gradle config file. | ||
# Last update: 24.6.2018. Orion: Update buildscript to match new system. | ||
# | ||
#Sun Jan 24 19:17:22 CST 2016 | ||
# Minecraft / Forge. | ||
minecraft_version=1.12.2 | ||
forge_version=14.23.3.2655 | ||
minecolonies_major=0 | ||
mappings=snapshot_20180108 | ||
# | ||
# Dependencies | ||
guidebook_version=2.0.1 | ||
guidebook_core_version=0.6.4 | ||
mantle_version=1.3.1.+ | ||
tinker_version=2.7.4.+ | ||
jei_version=4.8.5.138 | ||
c_b_version=14.0.128 | ||
minecolonies_minor=8 | ||
#deprecated, travis versioning instead | ||
minecolonies_build=25 | ||
|
||
minecolonies_mappings=snapshot_20180108 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.minecolonies.blockout; | ||
|
||
import com.minecolonies.api.util.BlockPosUtil; | ||
import net.minecraft.util.math.BlockPos; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.runners.MockitoJUnitRunner; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.number.OrderingComparison.greaterThanOrEqualTo; | ||
|
||
//TODO improve this test: check the value is correct, better edge cases | ||
@RunWith(MockitoJUnitRunner.class) | ||
public class DummyTest | ||
{ | ||
@Test | ||
public void ExecuteDummyTest() | ||
{ | ||
assertThat("Dummy test", true); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.minecolonies.structures; | ||
|
||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.runners.MockitoJUnitRunner; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
|
||
//TODO improve this test: check the value is correct, better edge cases | ||
@RunWith(MockitoJUnitRunner.class) | ||
public class DummyTest | ||
{ | ||
@Test | ||
public void ExecuteDummyTest() | ||
{ | ||
assertThat("Dummy test", true); | ||
} | ||
} |