File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments