forked from apache/incubator-wayang
-
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.
Signed-off-by: bertty <[email protected]>
- Loading branch information
Showing
39 changed files
with
413 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
|
||
cd "$(dirname "$0")/.." | ||
|
||
python -m unittest discover -s ./src/ --pattern=*test.py |
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
File renamed without changes.
File renamed without changes.
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,15 @@ | ||
import unittest | ||
|
||
|
||
class TestBenchmarkPython(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") |
Empty file.
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestIntegrationPythonPlatform(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
Empty file.
Empty file.
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitCoreChannel(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitCoreExecutor(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitCoreMapping(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitCorePlan(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitCorePlatform(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitCorePlugin(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitCoreTranslator(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
Empty file.
Empty file.
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitGraphGraph(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitGraphTypes(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
Empty file.
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitOperatorsBase(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitOperatorsSink(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitOperatorsSource(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitOperatorsUnary(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
Empty file.
Empty file.
16 changes: 16 additions & 0 deletions
16
python/src/pywy/tests/unit/platforms/python/channel_test.py
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitPlatformPyChannel(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
16 changes: 16 additions & 0 deletions
16
python/src/pywy/tests/unit/platforms/python/execution_test.py
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitPlatformPyExecution(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
16 changes: 16 additions & 0 deletions
16
python/src/pywy/tests/unit/platforms/python/mappings_test.py
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitPlatformPyMappings(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
Empty file.
16 changes: 16 additions & 0 deletions
16
python/src/pywy/tests/unit/platforms/python/operator/py_execution_operator_test.py
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitPlatformPyOperatorExecution(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
16 changes: 16 additions & 0 deletions
16
python/src/pywy/tests/unit/platforms/python/operator/py_sink_textfile_test.py
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,16 @@ | ||
import unittest | ||
|
||
|
||
class TestUnitPlatformPyOperatorSinkTextfile(unittest.TestCase): | ||
def setUp(self): | ||
pass | ||
|
||
def test_TO_REMOVE(self): | ||
""" | ||
TODO REMOVE THIS TEST, IT JUST TO VALIDATE THAT EVERYTHING IS CORRECT IN TERMS OF ENVIRONMENT | ||
Returns | ||
------- | ||
""" | ||
self.assertEqual("a", "a") | ||
|
Oops, something went wrong.