Guest User

Untitled

a guest
Jan 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. repo
  2. package1
  3. sub1
  4. tests
  5. test1.py
  6. test2.py
  7. package2
  8. sub2
  9. tests
  10. test3.py
  11. test4.py
  12. package3
  13. package4
  14.  
  15. class TestClass1(unittest.TestCase)
  16. def test_method1()
  17.  
  18. class TestClass2(unittest.TestCase)
  19. def test_method2()
  20.  
  21. class TestClass3(unittest.TestCase)
  22. def test_method3
  23.  
  24. [Method name] [modulename]. [ClassName] ... status
  25. test_method1 (test1.TestClass1) ... ok
  26. test_method2 (test1.TestClass2) ... ok
  27. test_method3 (test1.TestClass3) ... ok
  28.  
  29. repo.package1.sub1 [package] SUCCESS
  30. test1.py [unit test file] SUCCESS
  31. TestClass1.test_method1 [unit test] SUCCESS
  32. TestClass2.test_method2 [unit test] SUCCESS
  33. TestClass3.test_method3 [unit test] SUCCESS
Add Comment
Please, Sign In to add comment