BAEL-4516: Refine examples
This commit is contained in:
parent
6b75e0cbed
commit
0df340f847
|
@ -0,0 +1 @@
|
|||
/build/
|
|
@ -27,23 +27,40 @@ task printConfigurationInformation(){
|
|||
}
|
||||
}
|
||||
|
||||
// sourceSets{
|
||||
sourceSets{
|
||||
itest {
|
||||
compileClasspath += sourceSets.main.output
|
||||
runtimeClasspath += sourceSets.main.output
|
||||
java {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// itest {
|
||||
// java {
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
test {
|
||||
testLogging {
|
||||
events "passed","skipped", "failed"
|
||||
}
|
||||
}
|
||||
|
||||
// main {
|
||||
// java {
|
||||
// srcDir('src/random')
|
||||
// }
|
||||
// }
|
||||
dependencies {
|
||||
implementation('org.apache.httpcomponents:httpclient:4.5.12')
|
||||
testImplementation('junit:junit:4.12')
|
||||
// itestImplementation('com.google.guava:guava:29.0-jre')
|
||||
itestImplementation('com.google.guava:guava:29.0-jre')
|
||||
}
|
||||
|
||||
// configurations {
|
||||
// itestImplementation.extendsFrom(testImplementation)
|
||||
// }
|
||||
configurations {
|
||||
itestImplementation.extendsFrom(testImplementation)
|
||||
itestRuntimeOnly.extendsFrom(t)
|
||||
}
|
||||
|
||||
task itest(Type: test) {
|
||||
|
||||
}
|
||||
|
||||
// eclipse {
|
||||
// classpath {
|
||||
|
|
|
@ -3,17 +3,27 @@ package com.baeldung.itest;
|
|||
import static org.hamcrest.CoreMatchers.is;
|
||||
import static org.junit.Assert.assertThat;
|
||||
|
||||
import java.util.List;
|
||||
//import java.util.List;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.baeldung.main.SourceSetsObject;
|
||||
//import com.google.common.collect.ImmutableList;
|
||||
|
||||
public class SourceSetsItest {
|
||||
|
||||
|
||||
@Test
|
||||
public void whenRunThenFail() {
|
||||
List<String> someStrings = ImmutableList.of("Baeldung", "is", "cool");
|
||||
assertThat(false, is(true));
|
||||
public void whenRunThenSuccess() {
|
||||
|
||||
SourceSetsObject underTest = new SourceSetsObject("lorem","ipsum");
|
||||
|
||||
assertThat(underTest.getUser(), is("lorem"));
|
||||
assertThat(underTest.getPassword(), is("ipsum"));
|
||||
}
|
||||
|
||||
// @Test
|
||||
// public void whenRunThenFail() {
|
||||
// List<String> someStrings = ImmutableList.of("Baeldung", "is", "cool");
|
||||
// assertThat(false, is(true));
|
||||
// }
|
||||
}
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
package com.baeldung.main;
|
||||
|
||||
public class SourceSetsObject {
|
||||
|
||||
private final String user;
|
||||
private final String password;
|
||||
|
||||
public SourceSetsObject(String user, String password) {
|
||||
this.user = user;
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public String getUser() {
|
||||
return user;
|
||||
}
|
||||
|
||||
}
|
|
@ -3,17 +3,18 @@ package com.baeldung.test;
|
|||
import static org.hamcrest.CoreMatchers.is;
|
||||
import static org.junit.Assert.assertThat;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.baeldung.main.SourceSetsObject;
|
||||
|
||||
public class SourceSetsTest {
|
||||
|
||||
@Test
|
||||
public void whenRunThenSuccess() {
|
||||
List<String> someStrings = ImmutableList.of("Baeldung", "is", "cool");
|
||||
assertThat(true, is(true));
|
||||
|
||||
SourceSetsObject underTest = new SourceSetsObject("lorem","ipsum");
|
||||
|
||||
assertThat(underTest.getUser(), is("lorem"));
|
||||
assertThat(underTest.getPassword(), is("ipsum"));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue