Login
Remember
Register
Ask a Question
How many tests are run, when below code is tested using nose?
+1
vote
asked
Jul 16, 2020
in
Python
by
GeorgeBell
Q. How many tests are run, when below code is tested using nose?
import unittest
def test_sample1():
assert 3 == 3
class SampleTestClass(unittest.TestCase):
def test_sample2(self):
self.assertEqual(3, 3)
A. 3
B. 0
C. 2
D. 1
#python
Python-questions-answers
Please
log in
or
register
to answer this question.
0
Answers
...