Commit Graph

87 Commits

Author SHA1 Message Date
KUBO Atsuhiro d5bb3eac03 Add a test case for multibyte character support for Exporter::shortenedExport() 2015-07-30 11:57:37 +02:00
KUBO Atsuhiro 01f50e5d27 Add "ext-mbstring" to "require-dev" in composer.json 2015-07-30 11:57:33 +02:00
KUBO Atsuhiro 2348488730 Add multibyte character support for Exporter::shortenedExport() 2015-07-30 11:57:30 +02:00
Sebastian Bergmann 7ae5513327 Fix CS/WS issues 2015-06-21 09:55:53 +02:00
Sebastian Bergmann 84839970d0 Bump version 2015-01-27 08:23:06 +01:00
Sebastian Bergmann 0e03278b2f Move PHPUnit_Framework_TestCase::dataToString() to Exporter::shortenedRecursiveExport() 2015-01-27 08:22:40 +01:00
Sebastian Bergmann f03f8aa383 Move non-public method after public methods 2015-01-27 08:17:45 +01:00
Sebastian Bergmann 35ab8d385e Prepare release 2015-01-24 10:57:24 +01:00
Sebastian Bergmann 03de064882 Fix whitespace 2015-01-24 10:45:47 +01:00
Sebastian Bergmann e469f62cdd Add missing docblock 2015-01-24 10:44:01 +01:00
Sebastian Bergmann 4e1dcac9ea Add missing test case 2015-01-24 10:43:29 +01:00
Sebastian Bergmann bdc886f84e Refactor utility method 2015-01-24 10:41:08 +01:00
Sebastian Bergmann e36555c44b Add missing test case 2015-01-24 10:39:15 +01:00
Sebastian Bergmann 99aac416d2 Tweak test suite configuration 2015-01-23 08:22:39 +01:00
Sebastian Bergmann e434c2a980 Shorten comment 2015-01-23 08:19:47 +01:00
Sebastian Bergmann b13d97acce Fix CS/WS issues 2015-01-23 08:18:47 +01:00
Sebastian Bergmann 9dde8423fd Use Context class from new separate package 2015-01-23 08:14:07 +01:00
Sebastian Bergmann 610e54aa19 Bump PHPUnit dependency 2015-01-23 08:07:55 +01:00
Sebastian Bergmann 87f5a75bb1 Bump version 2015-01-23 08:07:42 +01:00
Sebastian Bergmann e0a5fdd644 Merge pull request #12 from henriquemoody/license
Update license and copyright in all files
2015-01-01 10:36:15 +01:00
Henrique Moody e496347843 Update license and copyright in all files 2015-01-01 07:31:48 -02:00
Jeff Welch c7d59948d6 Fugbix typo. 2014-09-09 20:51:36 -04:00
Jeff Welch 8ab105f1fb Fix #9: README is incorrect about implementation. 2014-08-13 19:54:49 -04:00
Jeff Welch eb54a69388 Do not advertise PEAR as an installation method
Sync with sebastianbergmann/phpunit-documentation@05bffa8
2014-05-05 04:31:02 -04:00
Sebastian Bergmann 7a263d87de * Remove Travis CI notification hook for IRC
* Add Travis CI notification hook for gitter.im
2014-05-04 11:43:29 +02:00
Sebastian Bergmann 9a62fed674 Update composer.phar when it is older than 30 days 2014-04-27 09:18:52 +02:00
Sebastian Bergmann 13e2857ac9 Workaround for "Nesting level too deep - recursive dependency?" fatal error on PHP 5.3.3 2014-04-18 11:45:21 +02:00
Sebastian Bergmann d124efa534 Ignore .idea directory 2014-04-18 11:32:10 +02:00
Sebastian Bergmann e78da04eb4 Use stable dependencies 2014-04-18 11:16:18 +02:00
Sebastian Bergmann 862849b68e Do not allow failures on HHVM 2014-04-18 11:14:15 +02:00
Sebastian Bergmann 180da8080b Merge pull request #7 from GrahamCampbell/tweaks
Minor Tweaks
2014-04-09 12:35:13 +02:00
Graham Campbell d6bc445c23 Updated travis.yml 2014-02-16 11:50:22 +00:00
Graham Campbell 13fa9289a5 Blank line at eof 2014-02-16 11:50:18 +00:00
Sebastian Bergmann 1f9a98e6f5 Do not download composer.phar when it already exists 2014-02-16 09:26:31 +01:00
Jeff Welch 5f947a1409 Use PHPUnit 4.0 2014-02-15 12:13:15 -05:00
Sebastian Bergmann edc4fa4769 Test PHP 5.3.3, PHP 5.3, and PHP 5.6 2014-02-15 13:03:08 +01:00
Jeff Welch 785beee80d Merge pull request #6 from fredemmott/hhvm
fix SplObjectStorage output in future HHVM releases
2014-02-13 14:15:23 -05:00
Fred Emmott 5277ca9d11 fix SplObjectStorage output in future HHVM releases
- Objects are stored indexed by hash
- However, when iterating, key() needs to return 0..n instead

So, HHVM's added a variable to keep track of the fake key.
2014-02-13 11:12:50 -08:00
Jeff Welch 96262075d7 Bump copyright year. 2014-02-11 04:35:07 -05:00
Jeff Welch 4898c24660 Sync with sebastianbergmann/phpunit@22e8879 2014-02-04 15:44:57 -05:00
Jeff Welch 6a2842f7e2 Sync with sebastianbergmann/phpunit@b8f8dd2 2014-02-04 15:35:27 -05:00
Jeff Welch fe675ee662 Merge pull request #4 from kalifg/php-dependency-update
Update PHP dependency to match PHPUnit 3.8
2014-02-04 12:30:48 -08:00
Michael Dwyer 48065c99d6 Update PHP dependency to match PHPUnit 3.8 2014-02-04 14:21:20 -06:00
Sebastian Bergmann c66626bdac Merge pull request #3 from fredemmott/hhvm
Make SplObjectStorage exporting in HHVM match Zend
2014-01-29 22:41:03 -08:00
Fred Emmott 5e5cedfbf2 Make SplObjectStorage exporting in HHVM match Zend
SplObjectStorage::$storage is the current method.
HHVM is about to be changed so that it uses $__storage instead to reduce
the chance of a conflict in cases like this:

```PHP
<?php

$o1 = new stdClass();
$store = new SplObjectStorage;
$store->attach($o1);
$store->storage = 'herpderp';
```

This gets PHPUnit to 100%, but #1 still depends on an array_keys fix for
recursive structures that hasn't reached master yet.
2014-01-29 13:56:45 -08:00
Sebastian Bergmann e4e101ff56 Sync with PHPUnit 3.8 dependencies 2014-01-29 22:19:53 +01:00
Sebastian Bergmann 5f53aea6f9 Cleanup 2014-01-29 18:56:09 +01:00
Jeff Welch 1ea51dd3c4 Removed references to old repos. 2013-11-06 04:43:40 -05:00
Sebastian Bergmann 7c801c2db0 Prepare release 2013-07-09 07:47:49 +02:00
Jeff Welch ded61126bd Type juggling
* Fixes 6732d996b0 (commitcomment-2642315)
2013-02-18 12:48:31 -05:00