//tdlist6.cpp //test driver for class Dlist (function 'remove') #include #include #include "dlist.h" main() { Dlist d; assert(d.isempty()); Dnode *n = d.firstnode(); cout<<"This is test for function Dlist::remove\n" <<"Test fails if next line is not an assertion error\n"; int i = d.remove(n); return (0); }