-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #655 from hernanmd/use_file_list_from_newtools
Use file list from newtools
- Loading branch information
Showing
90 changed files
with
2,899 additions
and
1,323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
42 changes: 42 additions & 0 deletions
42
src/NewTools-FileBrowser-Tests/StFileBrowserTestCase.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Class { | ||
#name : 'StFileBrowserTestCase', | ||
#superclass : 'TestCase', | ||
#instVars : [ | ||
'root', | ||
'fileSystemModel', | ||
'fileSystemPresenter' | ||
], | ||
#category : 'NewTools-FileBrowser-Tests-UI', | ||
#package : 'NewTools-FileBrowser-Tests', | ||
#tag : 'UI' | ||
} | ||
|
||
{ #category : 'testing' } | ||
StFileBrowserTestCase class >> isAbstract [ | ||
^ self = StFileBrowserTestCase | ||
] | ||
|
||
{ #category : 'accessing' } | ||
StFileBrowserTestCase class >> resources [ | ||
^ {StFileSystemResource} | ||
] | ||
|
||
{ #category : 'testing' } | ||
StFileBrowserTestCase class >> shouldInheritSelectors [ | ||
^ true | ||
] | ||
|
||
{ #category : 'instance creation' } | ||
StFileBrowserTestCase >> inspectRoot [ | ||
<script: 'self basicNew createRoot asFileReference inspect'> | ||
|
||
] | ||
|
||
{ #category : 'running' } | ||
StFileBrowserTestCase >> setUp [ | ||
|
||
super setUp. | ||
fileSystemModel := StFileSystemModel new. | ||
fileSystemPresenter := StFileSystemPresenter on: fileSystemModel. | ||
root := StFileSystemResource current root | ||
] |
Oops, something went wrong.