Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
22e162f4
Kaydet (Commit)
22e162f4
authored
Mar 29, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix bug in TestResult.addSubTest()
üst
e612c1e2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
1 deletion
+35
-1
result.py
Lib/unittest/result.py
+1
-1
test_result.py
Lib/unittest/test/test_result.py
+34
-0
No files found.
Lib/unittest/result.py
Dosyayı görüntüle @
22e162f4
...
...
@@ -134,7 +134,7 @@ class TestResult(object):
errors
=
self
.
failures
else
:
errors
=
self
.
errors
errors
.
append
((
test
,
self
.
_exc_info_to_string
(
err
,
test
)))
errors
.
append
((
sub
test
,
self
.
_exc_info_to_string
(
err
,
test
)))
self
.
_mirrorOutput
=
True
def
addSuccess
(
self
,
test
):
...
...
Lib/unittest/test/test_result.py
Dosyayı görüntüle @
22e162f4
...
...
@@ -227,6 +227,40 @@ class Test_TestResult(unittest.TestCase):
self
.
assertTrue
(
test_case
is
test
)
self
.
assertIsInstance
(
formatted_exc
,
str
)
def
test_addSubTest
(
self
):
class
Foo
(
unittest
.
TestCase
):
def
test_1
(
self
):
nonlocal
subtest
with
self
.
subTest
(
foo
=
1
):
subtest
=
self
.
_subtest
try
:
1
/
0
except
ZeroDivisionError
:
exc_info_tuple
=
sys
.
exc_info
()
# Register an error by hand (to check the API)
result
.
addSubTest
(
test
,
subtest
,
exc_info_tuple
)
# Now trigger a failure
self
.
fail
(
"some recognizable failure"
)
subtest
=
None
test
=
Foo
(
'test_1'
)
result
=
unittest
.
TestResult
()
test
.
run
(
result
)
self
.
assertFalse
(
result
.
wasSuccessful
())
self
.
assertEqual
(
len
(
result
.
errors
),
1
)
self
.
assertEqual
(
len
(
result
.
failures
),
1
)
self
.
assertEqual
(
result
.
testsRun
,
1
)
self
.
assertEqual
(
result
.
shouldStop
,
False
)
test_case
,
formatted_exc
=
result
.
errors
[
0
]
self
.
assertIs
(
test_case
,
subtest
)
self
.
assertIn
(
"ZeroDivisionError"
,
formatted_exc
)
test_case
,
formatted_exc
=
result
.
failures
[
0
]
self
.
assertIs
(
test_case
,
subtest
)
self
.
assertIn
(
"some recognizable failure"
,
formatted_exc
)
def
testGetDescriptionWithoutDocstring
(
self
):
result
=
unittest
.
TextTestResult
(
None
,
True
,
1
)
self
.
assertEqual
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment