Skip to content

Commit

Permalink
Improve Bank unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smithkm committed Oct 18, 2024
1 parent 03685e9 commit 51774cd
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,23 @@ void before() throws IOException, ResourceParseException {
lb.addSpecies(sb -> {
sb.genus("H", controlMap);
sb.baseArea(50f);
sb.addSite(ib->{
ib.ageTotal(100);
ib.yearsToBreastHeight(5);
ib.siteIndex(0.6f);
ib.height(20f);
ib.siteCurveNumber(10);
});
});
lb.addSpecies(sb -> {
sb.genus("S", controlMap);
sb.baseArea(99.9f);
sb.addSite(ib->{
ib.ageTotal(100);
ib.yearsToBreastHeight(5);
ib.siteIndex(0.6f);
ib.height(20f);
});
});
});
});
Expand Down

0 comments on commit 51774cd

Please sign in to comment.