SmallSense__EditSupportTests.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 13 Mar 2017 22:25:53 +0000
changeset 1028 345bd11146c7
parent 447 2d45c613a5bd
child 1056 7bcadc51aad8
permissions -rw-r--r--
Issue #127: Make `AbstractListDialog` to always return `acceptedValue` even if it's `nil` ...rather reusing inherited logic to return value of `accept` holder (either `true` or `false`) in case `acceptedValue` is `nil`. The thing is that in SmallSense, `nil` is used to signal to the caller that dialog was cancelled. This is seems to be more natural than using `false`. https://swing.fit.cvut.cz/projects/stx-jv/ticket/127

"
stx:goodies/smallsense - A productivity plugin for Smalltalk/X IDE
Copyright (C) 2013-2015 Jan Vrany

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License. 

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
"
"{ Package: 'stx:goodies/smallsense' }"

"{ NameSpace: SmallSense }"

AbstractTestCase subclass:#EditSupportTests
	instanceVariableNames:'codeView codeViewInteractor editService editSupport'
	classVariableNames:''
	poolDictionaries:''
	category:'SmallSense-Tests'
!

!EditSupportTests class methodsFor:'documentation'!

copyright
"
stx:goodies/smallsense - A productivity plugin for Smalltalk/X IDE
Copyright (C) 2013-2015 Jan Vrany

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License. 

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
"
! !

!EditSupportTests methodsFor:'accessing-classes'!

editSupportClass
    self subclassResponsibility

    "Created: / 23-07-2014 / 07:15:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!EditSupportTests methodsFor:'running'!

setUp
    | topView |

    super setUp.

    Smalltalk loadPackage: 'stx:goodies/sunitext/ui'.

    topView := StandardSystemView new.
    topView extent: 320 @ 200.
    topView label: self printString.
    codeView := Tools::CodeView2 origin: 0.0@0.0 extent: 1.0@1.0 in: topView.
    codeViewInteractor := codeView interactor.

    editService := EditService new.
    editSupport := self editSupportClass new.
    codeView services: (Array with: editService).
    codeView language: editSupport language.
    editService updateSupport: editSupport.

    topView open.
    topView waitUntilVisible.

    "Created: / 23-07-2014 / 07:15:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    "Modified (format): / 04-03-2015 / 09:42:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

tearDown

    editService := nil.
    editSupport := nil.
    codeView topView destroy.

    super tearDown

    "Created: / 23-07-2014 / 07:17:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    "Modified: / 04-03-2015 / 09:43:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!EditSupportTests class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !