# File tests/dispatchertester.rb, line 89
    def star_test(*args)
	nd = NQXML::Dispatcher.new(@xml)
	found = false
	nd.handle(*args) { | e |
	    found = true
	    assert_equal(e.text,
			 'My Book, which is mine, is a book. That is mine.')
	}
	nd.start()
	assert_equal(true, found)
    end