<small id='EaDRM'></small><noframes id='EaDRM'>

      <bdo id='EaDRM'></bdo><ul id='EaDRM'></ul>
    <tfoot id='EaDRM'></tfoot>

      <i id='EaDRM'><tr id='EaDRM'><dt id='EaDRM'><q id='EaDRM'><span id='EaDRM'><b id='EaDRM'><form id='EaDRM'><ins id='EaDRM'></ins><ul id='EaDRM'></ul><sub id='EaDRM'></sub></form><legend id='EaDRM'></legend><bdo id='EaDRM'><pre id='EaDRM'><center id='EaDRM'></center></pre></bdo></b><th id='EaDRM'></th></span></q></dt></tr></i><div id='EaDRM'><tfoot id='EaDRM'></tfoot><dl id='EaDRM'><fieldset id='EaDRM'></fieldset></dl></div>

    1. <legend id='EaDRM'><style id='EaDRM'><dir id='EaDRM'><q id='EaDRM'></q></dir></style></legend>
      1. Py.test:对类中的测试用例进行参数化

        时间:2023-09-10

        1. <tfoot id='zK4yi'></tfoot>

          <legend id='zK4yi'><style id='zK4yi'><dir id='zK4yi'><q id='zK4yi'></q></dir></style></legend>

                <tbody id='zK4yi'></tbody>

              <i id='zK4yi'><tr id='zK4yi'><dt id='zK4yi'><q id='zK4yi'><span id='zK4yi'><b id='zK4yi'><form id='zK4yi'><ins id='zK4yi'></ins><ul id='zK4yi'></ul><sub id='zK4yi'></sub></form><legend id='zK4yi'></legend><bdo id='zK4yi'><pre id='zK4yi'><center id='zK4yi'></center></pre></bdo></b><th id='zK4yi'></th></span></q></dt></tr></i><div id='zK4yi'><tfoot id='zK4yi'></tfoot><dl id='zK4yi'><fieldset id='zK4yi'></fieldset></dl></div>
            • <small id='zK4yi'></small><noframes id='zK4yi'>

                <bdo id='zK4yi'></bdo><ul id='zK4yi'></ul>
                  本文介绍了Py.test:对类中的测试用例进行参数化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我目前正在关注这个 py.test 示例,当我不这样做时它会成功使用类,但是当我将测试用例引入类时我失败了.

                  I'm currently following this py.test example and it works out when I do not use classes, however when I introduce test cases into classes I am failing.

                  我设法写的最小的情况如下:

                  The smallest case I managed to write is the following:

                  import unittest
                  
                  import pytest
                  
                  class FixtureTestCase(unittest.TestCase):
                  
                      @pytest.mark.parametrize("test_input,expected", [
                      ("3+5", 8),
                      ("2+4", 6),
                      ("6*9", 42),
                      ])
                      def test_1(self, a, b):
                          self.assertEqual(a, b)
                  

                  不幸的是当我执行时

                    py.test  test_suite.py
                  

                  我收到错误消息:

                    TypeError: test_1() takes exactly 3 arguments (1 given)
                  

                  如何才能生成一组 test_1 测试?

                  How can I do in order to generate a battery of test_1 tests?

                  推荐答案

                  如果你从 unittest.TestCase 继承,你的测试方法不能有额外的参数.如果您只是从 object 子类化,它会起作用(尽管您必须使用常规的 assert 语句而不是 TestCase.assertEqual 方法.

                  If you subclass from unittest.TestCase, your test methods cannot have additional arguments. If you simply subclass from object, it will work (though you'll have to use regular assert statements instead of the TestCase.assertEqual methods.

                  import unittest
                  
                  import pytest
                  
                  class TestCase(object):
                  
                      @pytest.mark.parametrize("test_input,expected", [
                      ("3+5", 8),
                      ("2+4", 6),
                      ("6*9", 42),
                      ])
                      def test_1(self, a, b):
                          assert eval(a) == b
                  

                  不过,在这一点上,它有点引出了一个问题,为什么您使用类而不是仅仅定义函数,因为测试本质上是相同的,但需要更少的整体样板和代码.

                  At that point though, it kind of begs the question why you're using classes instead of just defining functions, since the test will essentially be the same, but require less overall boilerplate and code.

                  这篇关于Py.test:对类中的测试用例进行参数化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在单个嵌入中列出所有具有多个服务器的公会 下一篇:机器人框架传递 cookie 以获取请求 (RequestsLibrary

                  相关文章

                  最新文章

                  <i id='V9ns4'><tr id='V9ns4'><dt id='V9ns4'><q id='V9ns4'><span id='V9ns4'><b id='V9ns4'><form id='V9ns4'><ins id='V9ns4'></ins><ul id='V9ns4'></ul><sub id='V9ns4'></sub></form><legend id='V9ns4'></legend><bdo id='V9ns4'><pre id='V9ns4'><center id='V9ns4'></center></pre></bdo></b><th id='V9ns4'></th></span></q></dt></tr></i><div id='V9ns4'><tfoot id='V9ns4'></tfoot><dl id='V9ns4'><fieldset id='V9ns4'></fieldset></dl></div>

                      <bdo id='V9ns4'></bdo><ul id='V9ns4'></ul>
                  1. <tfoot id='V9ns4'></tfoot>
                  2. <small id='V9ns4'></small><noframes id='V9ns4'>

                  3. <legend id='V9ns4'><style id='V9ns4'><dir id='V9ns4'><q id='V9ns4'></q></dir></style></legend>