Dart Unit Testing
What is Unit Testing?
Unit testing is a part of the software development process where particular unit/components of an application are tested. Unit testing of each component is necessary to enhance the application performance. We can say that a unit is the smallest testable chunk of a program that can be logically isolated in a system. In various programming languages, the individual program, a subroutine, a function, a method, or a class can be represented as a Unit. There can be many individual units within the module. In object-oriented programming, the method that belongs to base class/superclass, an abstract class can be represented as smaller units. Below image displays the type of testing.
Unit Testing Task
The unit testing task is given below.
- Unit Test Plan
Prepare
Review
Rework
Baseline - Unit Test Cases/Scripts
Prepare
Review
Rework
Baseline - Unit Test
Perform
Advantage of Unit Testing
Few advantages of unit testing are given below.
- We can maintain code easily
- It makes code more reusable.
- It makes development faster.
- The code can be easily debugged.
- It detects the cost of testing and fixing defects, because any error is captured in the early stage.
Dart Unit Testing
In Dart, we required to include an external library named "test", which facilitates a standard way of writing and running individual unit test. Unit testing can be achieved using the following steps.
Step - 1: Installing "test" package
To include the unit testing in our project, we must install a third-party packages "test" in our current working project. Let's open the pubspec.yaml in the our project and type the following statement.
Now, right-click on pubspec.yaml file and click on Pub: get dependencies. This will install the "test" package in our project.
We can also install it by using the following command.
Step - 2: Importing "test" package
Type the following line to import the "test" package in your project.
Step - 3: Writing Test Cases
The top-level test() function is added by the Test cases. In the test() function, we make the test assertion using the expect() function. The expert() function takes two arguments actualValue and MatchValue.
Syntax:
Group of Test Cases
We can create a group of multiple test cases using the group() function. It helps grouping of test cases based on some criteria. The description of each group is specified in the beginning of its test's description.
Syntax:
The syntax is given below.
Example - 1(Passing Test)
Here is the example where we define an add() method for unit test. It accepts two parameters as an integer values and returns an integer representing the sum. To test the add() method, understand the following example -
Step - 1: We import the test package.
Step -2: We define the test using the test() function and it uses the expert() function to impose an assertion.
Output:
00:00 +0: test to check add method 00:00 +1: All tests passed!
Example - 2 A unsuccessful Test
We define the sub() method which has a logical mistake. Let's have a following example.
Output:
00:00 +0: test to check sub 00:00 +0 -1: test to check sub Expected: <10> Actual: <9> package:test expect bin\Test123.dart 18:5 main.<fn> 00:00 +0 -1: test to check add method 00:00 +1 -1: Some tests failed. Unhandled exception: Dummy exception to set exit code. #0 _rootHandleUncaughtError.<anonymous closure> (dart:async/zone.dart:938) #1 _microtaskLoop (dart:async/schedule_microtask.dart:41) #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50) #3 _Timer._runTimers (dart:isolate-patch/timer_impl.dart:394) #4 _Timer._handleMessage (dart:isolate-patch/timer_impl.dart:414) #5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:148)
In the above example, the add() function is tested successfully but the sub() function failed the unit test due to logical error.
Grouping Test Cases
We can write the multiple test cases in the form of group. The group() is used to grouped together these methods. It helps to write much cleaner code.
In the following example, we are writing a test case for the split() function and the trim() function. We grouped together these function and name it String.
Let's understand the following example -
Example -
Output:
00:00 +0: String testing on split() method of string class 00:00 +1: String testing on trim() method of string class 00:00 +2: All tests passed
Comments
Post a Comment