aboutsummaryrefslogtreecommitdiff
path: root/test/dotty/tools
Commit message (Collapse)AuthorAgeFilesLines
* Move compiler and compiler tests to compiler dirFelix Mulder2016-11-2233-4001/+0
|
* Move (most) unit tests to correct locationsFelix Mulder2016-11-2231-2/+3884
| | | | | | Should still perhaps move `test/dotc/tests.scala` and the others in the same directory to a better more cohesive location. Would like to delete the worksheets as well - but maybe they hold sentimental value...
* Make sure all `Message` creation is by nameFelix Mulder2016-11-141-2/+2
|
* Make sure messages are lazily evaluated until `report` in `Reporter`Felix Mulder2016-11-101-0/+37
|
* Change `ClassicReporter` to `TestReporter` in test sourcesFelix Mulder2016-11-091-0/+52
|
* Test case for TreeInfo#defPathJason Zaugg2014-03-161-0/+30
I'm about to refactor that method in terms of a TreeAccumulator. Note that I've packaged the test case in `dotty.tools.dotc.ast` I believe this is the best approach for organizing unit tests: the import tax is minimized, and use of relative imports is made less fragile by avoiding creating new packages to test code. I'll reorganize the other unit tests like this if others agree.