@@ -458,7 +458,7 @@ TEST_CASE("reproduce", "[default]") {
458458 random.Delete ();
459459}
460460
461- TEST_CASE (" Process" , " [default]" ) {
461+ TEST_CASE (" Process" , " [default][Test] " ) {
462462 using sym_world_t = test_utils::TestingWorldWrapper<SymWorld>;
463463 emp::Ptr<emp::Random> random = emp::NewPtr<emp::Random>(10 );
464464 SymConfigBase config;
@@ -482,8 +482,8 @@ TEST_CASE("Process", "[default]") {
482482 sym->Process (location);
483483
484484
485- THEN (" Points changes and is set to 0 " ) {
486- int points_post_reproduction = 0 ;
485+ THEN (" Points are subtracted " ) {
486+ int points_post_reproduction = 60 ;
487487 REQUIRE (sym->GetPoints () == points_post_reproduction);
488488 }
489489
@@ -590,9 +590,9 @@ TEST_CASE("Process", "[default]") {
590590 sym->AddPoints (orig_points);
591591 sym->Process (location);
592592
593- THEN (" The free living symbiont reproduces and sets its points to 0 " ) {
593+ THEN (" The free living symbiont reproduces and subtracts the correct amount of points " ) {
594594 REQUIRE (world->GetNumOrgs () == (orig_num_orgs + 1 ));
595- REQUIRE (sym->GetPoints () == 0 );
595+ REQUIRE (sym->GetPoints () == 10 );
596596 }
597597 }
598598 }
@@ -622,9 +622,9 @@ TEST_CASE("Process", "[default]") {
622622 sym->AddPoints (orig_points);
623623 sym->Process (location);
624624
625- THEN (" The free living symbiont reproduces and sets its points to 0 " ) {
625+ THEN (" The free living symbiont reproduces and subtracts the correct amount of points " ) {
626626 REQUIRE (world->GetNumOrgs () == (orig_num_orgs + 1 ));
627- REQUIRE (sym->GetPoints () == 0 );
627+ REQUIRE (sym->GetPoints () == 10 );
628628 }
629629 }
630630 }
0 commit comments