Skip to content

Commit

Permalink
Update HeaderValueTest.php
Browse files Browse the repository at this point in the history
test updated
  • Loading branch information
icyz authored Dec 10, 2024
1 parent ac95989 commit ba9d994
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/Zend/Mail/Header/HeaderValueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,16 @@ public function validateValues()
["This is a\r test", 'assertFalse'],
["This is a\n\r test", 'assertFalse'],
["This is a\r\n test", 'assertTrue'],
["This is a \r\ntest", 'assertFalse'],
["This is a \r\ntest", 'assertTrue'],
["This is a \r\n\n test", 'assertFalse'],
["This is a\n\n test", 'assertFalse'],
["This is a\r\r test", 'assertFalse'],
["This is a \r\r\n test", 'assertFalse'],
["This is a \r\n\r\ntest", 'assertFalse'],
["This is a \r\n\n\r\n test", 'assertFalse']
["This is a \r\n\r\ntest", 'assertTrue'],
["This is a \r\n\n\r\n test", 'assertFalse'],
["This is à tèst àèìòù", 'assertTrue'],
["это тест по русскому языку", 'assertTrue'],
["هذااختار في اللغة العربيةу", 'assertTru
];
}
Expand Down

0 comments on commit ba9d994

Please sign in to comment.