Mobile-testing-emulator-simulator

提供:Dev Guides
移動先:案内検索

モバイルテスト-エミュレーターとシミュレーター

1つは、モバイルテストの場合は自明です。 モバイルテストを実行するには、モバイルデバイスが必要です。 これは、特定のモバイルセットで製品がどのように動作し、どのように見えるかにアクセスするためです。

航空券予約システムのアプリケーションを開発しているとします。 製品が完全に開発されたら、モバイルテストの一環として、Androidスマートフォン、iOS、Blackberryスマートフォン、その他のさまざまな種類のタブレットやiPadなど、主に使用されるすべてのデバイスでアプリケーションが期待どおりに動作するかどうかを確認する必要があります。

この種のチェックを行うには、そのようなデバイスをそれぞれ取得する必要があります。その後、アプリケーションが期待どおりに動作するかどうかをチェックできます。 はい、あなたは正しいと思っていました。製品所有者は、このような非常に多くのモバイルデバイスを調達してテストを実行するのに非常に高価だと反論するでしょう。 スマートな代替手段はありますか?

この問題の解決策は、モバイルシミュレーターとモバイルエミュレーターを使用することです。 これらは主に、スマートフォンの重要な機能のシミュレーションを提供するように設計されたソフトウェアプログラムです。 それらは本質的に非常に似ているため、時々、同じ意味で使用されます。

エミュレータ/シミュレータでのテストが実際のデバイスでのテストとどのように異なるかを比較しましょう-

Real Device Emulator/Simulator
Price Getting real devices will cost you a lot. It is almost free, we just need to download and install them
Processing Speed It has faster processing; however network latency may be normal. It is slower as compared to actual devices. It has observed less latency than real devices connected to the local network or in the cloud.
Debugging Debugging is not that easy. It provides step-by-step debugging of an application. Also, it provides an efficient way for capturing screenshots.
Web-app Testing Web applications can be tested in a normal way. Testing a web application is much easier.
Reliability Testing on a real device has a major advantage that it always gives accurate results. It cannot simulate all types of user interactions; hence it may lead to false results sometimes. So it scores low when it comes to reliability.

シミュレータ/エミュレータは、次の機能を模倣することはできません-

  • モバイル機器のバッテリー
  • 携帯端末のカメラ
  • 着信コールやSMSなどの中断を模倣するのが難しい。
  • モバイルデバイスのメモリ使用量のそれほど現実的なシミュレーションではありません。

ここで、モバイルシミュレータとモバイルエミュレータについて詳しく理解しましょう。 2つの間に特定の違いがあります。 次の表に、シミュレータとエミュレータの主な違いを示します。

Emulator Simulator
What it mimics

Mobile device software

モバイル機器のハードウェア

モバイルオペレーティングシステム

a

デバイスの内部動作。

ハードウェアを模倣しません。

How to get it It is generally provided by the device manufacturer. It is generally provided by the device manufacturer or some other company.
Internal structure It is written in machine-level assembly language. It is written in high-level language.
Debugging It is more suitable for debugging. It is not suitable for debugging purpose.
Performance Emulators are really slow. Emulating the actual hardware usually makes the software run slower than it would natively. Faster than emulators.
Example Google’s Android SDK Apple’s iOS Simulator

それでは、モバイルテストに最適な選択肢は何ですか? ベストプラクティスは、実際の開発が進行している間に、エミュレーターまたはシミュレーターを使用する必要があることを示しています。 製品を完成させる前に、実際のデバイスを選択して健全性チェックを行う必要があります。 たとえば、膨大な数のAndroidスマートフォンユーザーがいるため、賢明な選択は最新のAndroidデバイスの健全性チェックを行うことであり、シミュレーターで回帰を実行できます。