Changeset 1588:b79bcba43661 in lemon-0.x for test
- Timestamp:
- 07/26/05 16:31:29 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2092
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/xy_test.cc
r1435 r1588 52 52 check(doboz1.empty(), "It should be empty."); 53 53 54 doboz1 += a;54 doboz1.add(a); 55 55 check(!doboz1.empty(), "It should not be empty."); 56 doboz1 += b;56 doboz1.add(b); 57 57 58 58 check(doboz1.bottomLeft().x==1 && … … 75 75 "It should not be empty. Constructed from 1 point."); 76 76 77 doboz2 += doboz1;77 doboz2.add(doboz1); 78 78 check(doboz2.inside(seged), 79 79 "It should be inside. Incremented a box with an other.");
Note: See TracChangeset
for help on using the changeset viewer.