vimix

test_justify

Mar 30th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. //Author: Venix Cador
  3. // Date:03/13/2013
  4. // File: justify.cpp
  5. //
  6.  
  7.  
  8. #include "string.h"
  9. #include <cassert>
  10. int main(){
  11.  
  12. {
  13.  
  14. String str ="This is my sentence, do you like it?";
  15. assert(str =="This is my sentence, do you like it?");
  16. assert(str.justify(46) == "This is my sentence, do you like it?");
  17.  
  18. }
  19. std::cout <<"Done testing justify" <<std::endl;
  20.  
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment