summaryrefslogtreecommitdiff
path: root/test/files/run/t6200.scala
Commit message (Collapse)AuthorAgeFilesLines
* Minor fixes in test. The equals method always returned true.Tobias Schlatter2014-03-131-1/+1
| | | | | | | This commit ensures that the classes we use to test HashMaps and HashSets in t6196 and t6200 have proper equals and hashCode methods. (The old equals method returned always true and therefore hashCode violated its contract).
* Repairs unexpected failure of test t6200.scalaRex Kerr2014-01-151-3/+3
| | | | Added extra ()'s to get rid of deprecation warning for inferring unit arg.
* SI-6200 - HashMap should implement filterRĂ¼diger Klaehn2014-01-151-0/+68
This is the exact same algorithm as in SI-6196, with only slight differences due to the two type arguments of HashMap. Filter is tested by the new comparative collection test by @Ichoran, but there is nevertheless a small correctness test in t6200 in addition to tests of the new desirable behavior.