TestCaseを含む例文一覧と使い方
該当件数 : 33件
PHPUnit::TestCase-- A TestCase defines the fixture to run multiple tests. 例文帳に追加
PHPUnit::TestCase--TestCase: 複数のテストを実行するための試験装置の抽象化 - PEAR
This is equivalent to simply calling the TestCase instance.例文帳に追加
このメソッドは、TestCaseインスタンスの呼び出しと等価です。 - Python
Add a TestCase or TestSuite to the set of tests that make up the suite.例文帳に追加
TestCase又はTestSuiteのインスタンスをスイートに追加します。 - Python
InPyUnit, test cases are represented by instances of the TestCase class in the例文帳に追加
PyUnitでは、テストケースは - Python
Return a suite of all tests cases contained in the TestCase-derived class testCaseClass.例文帳に追加
TestCaseの派生クラスtestCaseClassに含まれる全テストケースのスイートを返します。 - Python
Instances of the TestCase class represent the smallesttestable units in a set of tests. 例文帳に追加
TestCaseクラスのインスタンスは、テストの最小実行単位を示します。 - Python
Add all the tests from a sequence of TestCase and TestSuite instances to this test suite.例文帳に追加
シーケンスtestsに含まれる全てのTestCase又はTestSuiteのインスタンスをスイートに追加します。 - Python
You may provide your own implementation that does not subclassfrom TestCase, of course. 例文帳に追加
もちろん、TestCaseの派生クラスではなく、独自のテストケースを実装しても構いません。 - Python
PyUnit provides abase class, TestCase, which may be used to create new testcases. 例文帳に追加
テストケースを作成する場合は、PyUnitが提供するTestCaseクラスを基底クラスとして利用することができます。 - Python
Return a suite of all tests cases given a string specifier.The specifier name is a ``dotted name'' that may resolveeither to a module, a test case class, a test method within a testcase class, or a callable object which returns a TestCase or TestSuite instance.例文帳に追加
nameには``ドット修飾名''でモジュールかテストケースクラス、またはTestCaseかTestSuiteのインスタンスを返す呼び出し可能オブジェクトを指定します。 - Python
This class is responsible for loading tests according to various criteria and returning them wrapped in a TestSuite.It can load all tests within a given module or TestCase class.例文帳に追加
モジュールまたはTestCaseクラスから、指定した条件に従ってテストをロードし、TestSuiteにラップして返します。 - Python
The test case and test fixture concepts are supported through the TestCase and FunctionTestCase classes; the formershould be used when creating new tests, and the latter can be used whenintegrating existing test code with a PyUnit-driven framework.例文帳に追加
PyUnitでは、テストケースとfixtureを、TestCaseクラスとFunctionTestCaseクラスで提供しています。 TestCaseクラスは新規にテストを作成する場合に使用し、FunctionTestCaseは既存のテストをPyUnitに組み込む場合に使用します。 - Python
Each TestCase instance represents a single test, but eachconcrete subclass may be used to define multiple tests -- the concrete class represents a single test fixture.例文帳に追加
TestCaseクラスのインスタンスは個別のテストをあらわすオブジェクトですが、TestCaseの具象サブクラスには複数のテストを定義する事ができます -- 具象サブクラスは、特定のfixture(テスト設備)を示している、と考えてください。 - Python
When loading from a module, it considers all TestCase-derived classes. For each such class, it creates an instance for each method with a name beginning with the string"test".例文帳に追加
モジュールからテストをロードする場合、全てのTestCase派生クラスを抽出し、名前が"test"で始まる全てのメソッドのインスタンスを作成します。 - Python
TestSuite objects behave much like TestCase objects,except they do not actually implement a test. Instead, they are used to aggregate tests into groups that should be run together.例文帳に追加
TestSuiteオブジェクトはTestCaseとよく似た動作をしますが、実際のテストは実装せず、一まとめにに実行するテストのグループをまとめるために使用します。 - Python
The collections contain tuples of (testcase,traceback), where traceback is a string containing a formatted version of the traceback for the exception.例文帳に追加
tracebackは例外のトレースバック情報をフォーマットした文字列です。 - Python
The TestCase and TestSuite classes ensure that results are properly stored; test authors do not need to worry about recording the outcome of tests.Testing frameworks built on top of例文帳に追加
TestCaseクラスとTestSuiteクラスのテスト結果を正しく記録しますので、テスト開発者が独自にテスト結果を管理する処理を開発する必要はありません。 - Python
ForTestCase instances, this will always be 1, but this method is also implemented by the TestSuite class, which can return larger values.例文帳に追加
TestCaseインスタンスは常に1を返します。 TestSuiteクラスでは1以上を返します。 - Python
In order to know where to send the message, each testcase has a property called destination. 例文帳に追加
メッセージの送信先を知るために、各テストケースには「宛先」というプロパティーがあります。 - NetBeans
In JUnit 4 it is no longer necessary to use this test method naming syntax because you can use annotations to identify test methods and the test class is no longer required to extend TestCase.例文帳に追加
JUnit 4 では注釈を使用してテストメソッドを識別できるため、このテストメソッドの命名構文を使用する必要がなくなり、テストクラスは TestCase を拡張する必要がなくなりました。 - NetBeans
Each instance of the TestCase will only be used to run a single test method, so a new fixture is created foreach test.Test suites are implemented by the TestSuite class.例文帳に追加
TestCaseの各インスタンスが実行するテストは一つだけで、fixtureは各テストごとに新しく作成されます。 テストスイートはTestSuiteクラスで実装されており、複数のテストとテストスイートをまとめる事ができます。 - Python
Return a suite of all tests cases contained in the given module. This method searches module for classes derived from TestCase and creates an instance of the class for each test method defined for the class.例文帳に追加
指定したモジュールに含まれる全テストケースのスイートを返します。 このメソッドはmodule内のTestCase派生クラスを検索し、見つかったクラスのテストメソッドごとにクラスのインスタンスを作成します。 - Python
This class implements the portion of the TestCase interface which allows the test runner to drive the test, but does not provide the methods which test code can use to check and report errors. This is used to create test cases using legacy test code, allowing it to be integrated into a例文帳に追加
このクラスではTestCaseインターフェースの内、テストランナーがテストを実行するためのインターフェースだけを実装しており、テスト結果のチェックやレポートに関するメソッドは実装していません。 既存のテストコードを - Python
TestCase instances provide three groups of methods: one groupused to run the test, another used by the test implementation to check conditions and report failures, and some inquiry methodsallowing information about the test itself to be gathered.Methods in the first group are:例文帳に追加
TestCaseインスタンスには、次の3種類のメソッドがあります:テストを実行するためのメソッド・条件のチェックやテスト失敗のレポートのためのメソッド・テストの情報収集に使用する問い合わせメソッド。 テストを実行するためのメソッドを以下に示します: - Python
This class implements the interface needed by the test runner to allow it to drive the test, and methods that the test code can use to check for and report various kinds of failures.例文帳に追加
TestCaseクラスでは、テストランナーがテストを実行するためのインターフェースと、各種のチェックやテスト失敗をレポートするためのメソッドを実装しています。 - Python
This is easy, sinceTestSuite instances can be added to a TestSuite just as TestCase instances can be added to a TestSuite:例文帳に追加
システム全体のテストを行う場合など、テストスイートをさらにグループ化したい場合がありますが、このような場合、TestSuiteインスタンスにはTestSuiteと同じようにTestSuiteを追加する事ができます。 - Python
Warning:While using a hierarchy ofTestcase-derived classes can be convenient in sharingfixtures and helper functions, defining test methods on base classes that are not intended to be instantiated directly does not play well with this method.例文帳に追加
警告: Testcaseクラスを基底クラスとしてクラス階層を構築するとfixtureや補助的な関数をうまく共用することができますが、基底クラスに直接インスタンス化できないテストメソッドがあると、このloadTestsFromModuleを使うことができません。 - Python
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| Copyright © 2001 - 2008 by the PEAR Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/ ). |
| © 2010, Oracle Corporation and/or its affiliates. Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners. |
| Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|