This shows you the differences between two versions of the page.
dss:laboratoare:01 [2019/08/14 14:47] razvan.nitu1305 [Functions] |
dss:laboratoare:01 [2019/08/14 15:07] (current) razvan.nitu1305 [Unittests] |
||
---|---|---|---|
Line 523: | Line 523: | ||
<code D> | <code D> | ||
- | class Sum | + | struct Sum |
{ | { | ||
int add(int x, int y) { return x + y; } | int add(int x, int y) { return x + y; } | ||
Line 529: | Line 529: | ||
unittest | unittest | ||
{ | { | ||
- | Sum sum = new Sum; | + | Sum sum; |
assert(sum.add(3,4) == 7); | assert(sum.add(3,4) == 7); | ||
assert(sum.add(-2,0) == -2); | assert(sum.add(-2,0) == -2); |