English 中文(简体)
我如何用某种方法测试方法?
原标题:How do I unit test the methods in a method object?

I hlBA&jp&Upm;

现在,我有一个“租用”方法的班子和一个成员职能组,将计算结果与小单位相匹配。 我如何检验这些成员的职能?

我的第一个想法是,我的单位测试基本是“run(run)”方法的复印件(不同的初始化),但每次向成员发出要求,以检查计算状态。

(一百万人使用沙尔和单元测试模块)。

class Train: 

    def __init__(self, options, points): 
        self._options = options 
        self._points = points 
        # other initializations

    def run(self): 
        self._setup_mappings_dict() 
        self._setup_train_and_estimation_sets() 
        if self._options.estimate_method ==  per_class : 
            self._setup_priors() 
        self._estimate_all_mappings() 
        self._save_mappings() 

    def _estimate_all_mappings(): 
        # implementation, calls to methods in this class

    #other method definitions

我当然对成员国在呼吁采用不同的方法作为执行<条码>run()方法的一部分之前和之后应做些什么抱有期望。 我是否应该对这些“私人”特性提出主张? 我不知道如何联合测试这些方法。

另一种选择是,我真的应该对这些选择进行测试。

最佳回答

我回答我自己的问题。 在经过阅读和思考之后,我认为我一定要单独测试这些私人方法。 我只是检验公众的界面。 如果内部处理所采用的私人方法足以独立测试,而不仅仅是目前执行中的巧合,那么,这或许是一个迹象,表明它们应当被重新归入一个单独的类别。

问题回答

我同你的回答一样,但我不同意。

您使用这一设计模式的情况是,正在开展相当复杂的行动。 因此,我可以说,能够核实这种行动的各个组成部分是非常可取的。

那么,你们的依靠是其他资源的问题(在这种情况下可能或不可能如此)。

你们需要能够使用某种形式的控制转移,以注入某种形式的模拟,孤立这一类别。

除了大多数模拟框架外,还将为你们提供进入私人会员的机会。

这里有两个原则。 第一,公开方法应该是你想要揭露的公众人物。 在这种情况下,披露<代码>run()是适当的,而披露<编码>> 估计数_all_mappings( 则不是,因为你不想让任何要求这一职能的人。

第二是,单一职能只能做一事。 在此情况下,<代码>run() 汇总了其他几个复杂行动的结果。 。 这反过来又可能归于其他一些职能(, 估计数_map(>),其中仅估算 估计数_all_mappings(的合计数。

因此,赋予这种责任是正确的。 然后,需要的是了解如何使用

还有一个类别的唯一原因是,如果构成自己的行为单位的职能有一部分。 例如,你会创造一些B类,只有A类人所要求/使用,除非有些国家单位更容易作为物体环绕。





相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签