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
9dcbbea8
Kaydet (Commit)
9dcbbea8
authored
Nis 27, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Factor out common boilerplate for test_support
üst
c23fb774
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
24 deletions
+14
-24
test_bisect.py
Lib/test/test_bisect.py
+2
-12
test_bool.py
Lib/test/test_bool.py
+1
-3
test_os.py
Lib/test/test_os.py
+5
-9
test_support.py
Lib/test/test_support.py
+6
-0
No files found.
Lib/test/test_bisect.py
Dosyayı görüntüle @
9dcbbea8
...
...
@@ -192,24 +192,14 @@ a priority queue (example courtesy of Fredrik Lundh):
"""
#==============================================================================
def
makeAllTests
():
suite
=
unittest
.
TestSuite
()
for
klass
in
(
TestBisect
,
TestInsort
):
suite
.
addTest
(
unittest
.
makeSuite
(
klass
))
return
suite
#------------------------------------------------------------------------------
__test__
=
{
'libreftest'
:
libreftest
}
def
test_main
(
verbose
=
None
):
from
test
import
test_bisect
suite
=
makeAllTests
()
test_support
.
run_suite
(
suite
)
test_support
.
run_classtests
(
TestBisect
,
TestInsort
)
test_support
.
run_doctest
(
test_bisect
,
verbose
)
if
__name__
==
"__main__"
:
...
...
Lib/test/test_bool.py
Dosyayı görüntüle @
9dcbbea8
...
...
@@ -331,9 +331,7 @@ class BoolTest(unittest.TestCase):
self
.
assertEqual
(
cPickle
.
dumps
(
False
,
True
),
"I00
\n
."
)
def
test_main
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
BoolTest
))
test_support
.
run_suite
(
suite
)
test_support
.
run_classtests
(
BoolTest
)
if
__name__
==
"__main__"
:
test_main
()
...
...
Lib/test/test_os.py
Dosyayı görüntüle @
9dcbbea8
...
...
@@ -9,7 +9,7 @@ import warnings
warnings
.
filterwarnings
(
"ignore"
,
"tempnam"
,
RuntimeWarning
,
__name__
)
warnings
.
filterwarnings
(
"ignore"
,
"tmpnam"
,
RuntimeWarning
,
__name__
)
from
test.test_support
import
TESTFN
,
run_
suite
from
test.test_support
import
TESTFN
,
run_
classtests
class
TemporaryFileTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
@@ -282,14 +282,10 @@ class WalkTests(unittest.TestCase):
os
.
rmdir
(
TESTFN
)
def
test_main
():
suite
=
unittest
.
TestSuite
()
for
cls
in
(
TemporaryFileTests
,
StatAttributeTests
,
EnvironTests
,
WalkTests
,
):
suite
.
addTest
(
unittest
.
makeSuite
(
cls
))
run_suite
(
suite
)
run_classtests
(
TemporaryFileTests
,
StatAttributeTests
,
EnvironTests
,
WalkTests
)
if
__name__
==
"__main__"
:
test_main
()
Lib/test/test_support.py
Dosyayı görüntüle @
9dcbbea8
...
...
@@ -233,6 +233,12 @@ def run_unittest(testclass):
"""Run tests from a unittest.TestCase-derived class."""
run_suite
(
unittest
.
makeSuite
(
testclass
),
testclass
)
def
run_classtests
(
*
classnames
):
suite
=
unittest
.
TestSuite
()
for
cls
in
classnames
:
suite
.
addTest
(
unittest
.
makeSuite
(
cls
))
run_suite
(
suite
)
#=======================================================================
# doctest driver.
...
...
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