memrootじしょ
英和翻訳
unittest
interrelation
duplicator
mutter
CryEngine
workable
Synthesizer
timetable
voicemail
instigating
unittest
ˈjuːnɪt tɛst
ユニットテスト
1.
ソフトウェア開発において、プログラムの最小単位(関数、メソッドなど)が正しく動作するかを検証するテスト手法。
「unittest」とは、ソフトウェアのソースコードを構成する最も小さな単位、例えば関数やメソッド、クラスなどが、開発者の意図通りに機能しているかを確認するためのテスト手法です。これにより、開発の早い段階でバグを発見し、修正コストを低く抑えることができます。また、コードの変更が既存の機能に悪影響を与えないことを保証するリグレッションテストの側面も持ちます。
We
need
to
implement
more
unittests
before
the
release.
(リリース前に、もっと多くのunittestを実装する必要があります。)
We
「私たち」という話者を含む複数の人を指します。
need to implement
「実装する必要がある」という義務や必要性を表します。
more
「より多くの」という量を表します。
unittests
「単体テスト」というソフトウェアテストの一種を指します。複数形。
before the release
「リリース前に」という時期を表します。
The
new
feature
passed
all
its
unittests
successfully.
(新機能はすべてのunittestに成功しました。)
The new feature
「その新機能」という開発された新しい機能。
passed
「合格した」「通過した」という動詞の過去形。
all its unittests
「そのすべての単体テスト」というテストの対象と結果を指します。
successfully
「成功裏に」という方法を表す副詞。
Automated
unittests
are
essential
for
continuous
integration.
(自動化されたunittestは、継続的インテグレーションに不可欠です。)
Automated
「自動化された」という修飾語。
unittests
「単体テスト」の複数形。
are essential
「不可欠である」という重要性を示す表現。
for continuous integration
「継続的インテグレーションにとって」という目的や対象を表します。
Developers
often
run
unittests
locally
before
pushing
code.
(開発者はコードをプッシュする前に、よくローカルでunittestを実行します。)
Developers
「開発者たち」という職業の人々を指します。
often
「しばしば」「よく」という頻度を表す副詞。
run unittests
「単体テストを実行する」という行為を指します。
locally
「ローカルで」という場所を表す副詞。
before pushing code
「コードをプッシュする前に」という時系列を表します。
The
unittest
framework
provides
tools
for
writing
and
executing
tests.
(unittestフレームワークは、テストの作成と実行のためのツールを提供します。)
The unittest framework
「単体テストのフレームワーク」というテストをサポートするソフトウェアを指します。
provides
「提供する」という動詞。
tools
「ツール」という道具や手段を指します。
for writing and executing tests
「テストを作成し実行するための」という目的を表します。
関連
unit testing
TDD
integration test
end-to-end test
mocking
assertion
refactoring
code coverage