StrTest.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. class StrTest extends PHPUnit_Framework_TestCase {
  3. public function test_lower()
  4. {
  5. $this->assertEquals('something', Laravel\Str::lower('SomeThing'));
  6. $this->assertEquals('τάχιστη', Laravel\Str::lower('ΤΆΧΙΣΤΗ'));
  7. }
  8. public function test_upper()
  9. {
  10. $this->assertEquals('SPEAK LOUDER', Laravel\Str::upper('speak louder'));
  11. $this->assertEquals('ΤΆΧΙΣΤΗ', Laravel\Str::upper('Τάχιστη'));
  12. }
  13. public function test_title()
  14. {
  15. $this->assertEquals('This Is A Test', Laravel\Str::title('this is a test'));
  16. $this->assertEquals('Τάχιστη Τάχιστη', Laravel\Str::title('τάχιστη τάχιστη'));
  17. }
  18. public function test_length()
  19. {
  20. $this->assertEquals(4, Laravel\Str::length('four'));
  21. $this->assertEquals(7, Laravel\Str::length('τάχιστη'));
  22. }
  23. public function test_ascii()
  24. {
  25. $this->assertEquals('Deuxieme Article', Laravel\Str::ascii('Deuxième Article'));
  26. }
  27. public function test_random()
  28. {
  29. $this->assertEquals(5, strlen(Laravel\Str::random(5)));
  30. }
  31. public function test_limit()
  32. {
  33. $this->assertEquals('Thi...', Laravel\Str::limit('This is a string of text', 3, '...'));
  34. $this->assertEquals('This is&nbsp;', Laravel\Str::limit('This is a string of text', 7, '&nbsp;'));
  35. $this->assertEquals('τάχ', Laravel\Str::limit('τάχιστη', 3, ''));
  36. }
  37. public function test_limit_words()
  38. {
  39. $this->assertEquals('This is a...', Laravel\Str::limit_words('This is a string of text', 3, '...'));
  40. $this->assertEquals('This is a string&nbsp;', Laravel\Str::limit_words('This is a string of text', 4, '&nbsp;'));
  41. }
  42. }