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
bee87b4c
Kaydet (Commit)
bee87b4c
authored
Tem 13, 2009
tarafından
Michael Foord
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move initialising unittest.TestProgram.testRunner into runTests. Issue 6418.
üst
f4a96e07
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
12 deletions
+5
-12
test_unittest.py
Lib/test/test_unittest.py
+2
-10
unittest.py
Lib/unittest.py
+3
-2
No files found.
Lib/test/test_unittest.py
Dosyayı görüntüle @
bee87b4c
...
...
@@ -6,6 +6,7 @@ Still need testing:
TestCase.{assert,fail}* methods (some are tested implicitly)
"""
import
sys
from
test
import
test_support
import
unittest
from
unittest
import
TestCase
...
...
@@ -2285,15 +2286,6 @@ class Test_Assertions(TestCase):
self
.
failIfAlmostEqual
,
0
,
.
1
+.
1
j
,
places
=
0
)
class
Test_TestProgram
(
TestCase
):
def
testTestProgram_testRunnerArgument
(
self
):
program
=
object
.
__new__
(
unittest
.
TestProgram
)
program
.
parseArgs
=
lambda
_
:
None
program
.
runTests
=
lambda
:
None
program
.
__init__
(
testRunner
=
None
)
self
.
assertEqual
(
program
.
testRunner
,
unittest
.
TextTestRunner
)
######################################################################
## Main
...
...
@@ -2302,7 +2294,7 @@ class Test_TestProgram(TestCase):
def
test_main
():
test_support
.
run_unittest
(
Test_TestCase
,
Test_TestLoader
,
Test_TestSuite
,
Test_TestResult
,
Test_FunctionTestCase
,
Test_Assertions
,
Test_TestProgram
)
Test_Assertions
)
if
__name__
==
"__main__"
:
test_main
()
Lib/unittest.py
Dosyayı görüntüle @
bee87b4c
...
...
@@ -800,8 +800,6 @@ Examples:
def
__init__
(
self
,
module
=
'__main__'
,
defaultTest
=
None
,
argv
=
None
,
testRunner
=
None
,
testLoader
=
defaultTestLoader
):
if
testRunner
is
None
:
testRunner
=
TextTestRunner
if
type
(
module
)
==
type
(
''
):
self
.
module
=
__import__
(
module
)
for
part
in
module
.
split
(
'.'
)[
1
:]:
...
...
@@ -851,6 +849,9 @@ Examples:
self
.
module
)
def
runTests
(
self
):
if
self
.
testRunner
is
None
:
self
.
testRunner
=
TextTestRunner
if
isinstance
(
self
.
testRunner
,
(
type
,
types
.
ClassType
)):
try
:
testRunner
=
self
.
testRunner
(
verbosity
=
self
.
verbosity
)
...
...
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