Skip to content

Commit

Permalink
Modify the TestPipeline declaration to be 'final transient'
Browse files Browse the repository at this point in the history
  • Loading branch information
henryken committed Jun 3, 2019
1 parent bb39cf0 commit 2bddf9c
Show file tree
Hide file tree
Showing 21 changed files with 23 additions and 23 deletions.
6 changes: 3 additions & 3 deletions learning/katas/java/.idea/study_project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void count() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void max() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void mean() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void min() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void sum() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void filter() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void filter_parDo() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void coGroupByKey() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void combine_binaryCombineFn() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@SuppressWarnings("unchecked")
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void combine_combineFn() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void combine_simpleFn() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void flatten() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void groupByKey() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void flatMapElements() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void mapElements() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void parDo_oneToMany() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void parDo() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void groupByKey() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class TaskTest {

@Rule
public TestPipeline testPipeline = TestPipeline.create();
public final transient TestPipeline testPipeline = TestPipeline.create();

@Test
public void parDo() {
Expand Down

0 comments on commit 2bddf9c

Please sign in to comment.