/**
 * Test the Step 4 AddressBook class.
 * This is a controller class called from
 * Tester.
 */

class TestAddressBook
{
    AddressBook     myBook;
    Person          person;
    

    public void setupArray( int N )
    {
        myBook = new AddressBook( N );

        //add N Person objects
        for (int i = 0; i < N; i++) {
            person = new Person( "Ms. X" + i, 10, 'F' );
            myBook.add( person );
        }
    }


    public void testDelete( )
    {
        //first make sure the person is in the array
        person = myBook.search( "Ms. X2" );

        if ( person == null ) {
            System.out.println( "Error: Didn’t find the person it should" );
        }
        else {
            System.out.println( person.getName() + " is found okay." );
          
            boolean success = myBook.delete("Ms. X2" );

            if ( success ) {
                  
                person = myBook.search( "Ms. X2" );

                if (person == null) {
                      
                    System.out.println( "Okay: Deletion works" );
                }
                else {
                      
                    System.out.println( "Error: Person is still there" );
                }
            }
            else {
                  
                System.out.println( "Error: Deletion has a problem" );
            }
        }
    }
}