Changes between Version 2 and Version 8 of Ticket #3009
- Timestamp:
- Aug 13, 2009, 11:52:31 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3009
-
Property
Component
changed from
General
toQA
- Property Keywords HasTest Review? added
-
Property
Version
changed from
SVN (FCKeditor)
toCKEditor 3.0 Beta 2
-
Property
Milestone
changed from
CKEditor 3.0
toCKEditor 3.1
-
Property
Component
changed from
-
Ticket #3009 – Description
v2 v8 1 In functional tests wh ichalways requires to have a fully interacted editor instance as prerequisites, with all tests in a case share a 'playground' instance.1 In functional tests where always requires to have a fully interacted editor instance as prerequisites, with all tests in a case share a 'playground' instance. 2 2 3 Though we could find workaround by enhancing the current YUI Test framework, it's better to leave the core Framework untouched since it's will be heavy to maintain those changes when future versions of YUI are released, so it would result in we make a customized '''IteractiveEditorTestCase''' which provide the required functionality. 3 We should provide a customized '''TestSuite''' which responsible for setting up a editor instance transparently with all containing TCs share this singleton, with this, it even able to make sure each test 's cleanness in a TC by resetting the editor with '''TestCase::setUp'''. 4 5 Since the setting up of our editor is always an asynchronous operation, so does cleaning up an editor sometimes, sadly that YUI doesn't support calling '''wait/resume''' inside setUp method, we should work around it in order to bring the above functionality into truth.