Remove no-longer-applicable tests from group_saveload.

This commit is contained in:
Jeff Young 2020-09-25 21:10:13 +01:00
parent 955ba0a483
commit 0818bd05d2
1 changed files with 0 additions and 16 deletions

View File

@ -263,22 +263,6 @@ BOOST_AUTO_TEST_CASE( InvalidGroups )
delete s_removedGroup;
s_removedGroup = nullptr;
// Single empty group
board1 = createBoard( { {} } );
res = board1->GroupsSanityCheck();
BOOST_CHECK_MESSAGE( res.find( "Group must have at least one member" ) != wxString::npos,
res );
// Duplicate group name
board1 = createBoard( { { TEXT0 }, { TEXT1 }, { TEXT2 }, { TEXT3 }, { TEXT4 }, { TEXT5 } } );
res = board1->GroupsSanityCheck();
BOOST_CHECK_MESSAGE( res.find( "Two groups of identical name" ) != wxString::npos, res );
// Group references item that is not on board
board1 = createBoard( { { REMOVED_TEXT } } );
res = board1->GroupsSanityCheck();
BOOST_CHECK_MESSAGE( res.find( "contains deleted item" ) != wxString::npos, res );
// Delete the removed text since the test is over
board1.reset( nullptr );
delete s_removedText;