Skip to content

Commit ad91567

Browse files
author
Sabbir Ahmed
authored
Merge pull request #809 from HridoyHazard/hn
junit cheatsheet added
2 parents f69ff5b + f352545 commit ad91567

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

data/junit.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"id": "junit",
3+
"title": "জেইউনিট",
4+
"slug": "junit",
5+
"description": "জেইউনিট হচ্ছে জাভা প্রোগ্রামিং ল্যাঙ্গুয়েজের টেস্টিং ফ্রের্মওয়ার্ক",
6+
"colorPref": "#333",
7+
"contents": [
8+
{
9+
"title": "আসর্শন মেথড",
10+
"items": [
11+
{
12+
"definition": "প্যারামিটার নাল কিনা যাচাই করে",
13+
"code": "assertNull(Object x)"
14+
},
15+
{
16+
"definition": "প্যারামিটার নাল নয় কিনা যাচাই করে",
17+
"code": "assertNotNull(Object x)"
18+
},
19+
{
20+
"definition": "প্যারামিটার সত্য কিনা যাচাই করে",
21+
"code": "assertTrue(boolean x)"
22+
},
23+
{
24+
"definition": "প্যারামিটার মিথ্যা কিনা যাচাই করে",
25+
"code": "assertFalse(boolean x)"
26+
},
27+
{
28+
"definition": "দুটো অবজেক্ট সমান কিনা যাচাই করে",
29+
"code": "assertEquals(Object x,Object y)"
30+
},
31+
{
32+
"definition": "দুটো অবজেক্ট সেইম কিনা যাচাই করে",
33+
"code": "assertSame(Object x, Objecty)"
34+
},
35+
{
36+
"definition": "দুটো অবজেক্ট সমান সেইম নয় কিনা যাচাই করে",
37+
"code": "assertNotSame(Object x, Object y)"
38+
},
39+
{
40+
"definition": "প্রোগ্রামাটিক্যালি টেস্ট ফেইল করে",
41+
"code": "fail()"
42+
}
43+
]
44+
}
45+
]
46+
}

0 commit comments

Comments
 (0)