Skip to content

Commit c6023d1

Browse files
eu321Warchant
authored andcommitted
create mock-pop-mining subproject (#95)
1 parent 96ee9a2 commit c6023d1

File tree

5 files changed

+76
-0
lines changed

5 files changed

+76
-0
lines changed

mock-pop-mining/.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Gradle
2+
.idea/**/gradle.xml
3+
.idea/**/libraries
4+
.gradle/
5+
build/
6+
7+
# Eclipse
8+
.settings
9+
.classpath
10+
.project
11+
bin/

mock-pop-mining/build.gradle

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
plugins {
2+
id "java"
3+
id "idea"
4+
id "java-library"
5+
}
6+
7+
dependencies {
8+
compile project(':core')
9+
10+
testCompile 'junit:junit:4.12'
11+
}
12+
13+
test {
14+
testLogging {
15+
showStackTraces = true
16+
showStandardStreams = true
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// VeriBlock Blockchain Project
2+
// Copyright 2017-2018 VeriBlock, Inc
3+
// Copyright 2018-2019 Xenios SEZC
4+
// All rights reserved.
5+
// https://www.veriblock.org
6+
// Distributed under the MIT software license, see the accompanying
7+
// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
8+
9+
package org.veriblock.sdk.mock;
10+
11+
// Also known as APM
12+
public class AltChainPopMiner {
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// VeriBlock Blockchain Project
2+
// Copyright 2017-2018 VeriBlock, Inc
3+
// Copyright 2018-2019 Xenios SEZC
4+
// All rights reserved.
5+
// https://www.veriblock.org
6+
// Distributed under the MIT software license, see the accompanying
7+
// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
8+
9+
package org.veriblock.sdk.mock;
10+
11+
import org.junit.After;
12+
import org.junit.Assert;
13+
import org.junit.Before;
14+
import org.junit.Test;
15+
16+
public class AltChainPopMinerTest {
17+
18+
private AltChainPopMiner apm;
19+
20+
@Before
21+
public void setUp() {
22+
apm = new AltChainPopMiner();
23+
}
24+
25+
@After
26+
public void tearDown() {
27+
}
28+
29+
@Test
30+
public void dummyTest() {
31+
Assert.assertTrue(true);
32+
}
33+
}

settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ include 'core'
22
include 'alt-integration-adapter-java'
33
include 'alt-integration-grpc-client'
44
include 'alt-integration-grpc-service'
5+
include 'mock-pop-mining'
56

67
rootProject.name = 'alt-integration'

0 commit comments

Comments
 (0)