-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d9afb3
commit b134974
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Dart | ||
|
||
Common Algorithms which are usually taught in Data Structures and Algorithms courses. | ||
|
||
Make sure that they are in Dart and well commented. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Unit Tests for Dart Algorithms | ||
|
||
Unit Tests are needed for programs which are already present. | ||
|
||
Add atlest 5 unit tests per program. | ||
|
||
### File Naming | ||
|
||
Let there is a program named abcd.dart, its Unit Test should be named abcd_test.dart |