File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Parasol-Core.package/BPSmalltalkPlatform.class/instance
BPMiscTestCase.class/instance
BPRemoteWebDriverTestCase.class/instance Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11facade
22jsonRead: aString
33
4- ^ WAJsonParser parse: aString
4+ ^ ( Smalltalk at: # WAJsonParser) parse: aString
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ testPlatformJavaTestGeneration
66 stream := WriteStream on: String new .
77 BPPlatform generateJavaTestOn: stream.
88 stream close.
9- self assert: (stream contents findString : ' @Test' startingAt: 1 ) > 0
9+ self assert: (stream contents indexOfSubCollection : ' @Test' startingAt: 1 ) > 0
1010 description: ' The generated Java test code should at least contain the @Test annotation' .
Original file line number Diff line number Diff line change 11running
22testGetPageSource
33
4- self assert: (driver getPageSource findString : ' Supercalifragilisticexpialidocious' ) > 0 .
4+ self assert: (driver getPageSource indexOfSubCollection : ' Supercalifragilisticexpialidocious' ) > 0 .
55 driver close.
66 self waitForDriverToFinishClosing.
77 self should: [ driver getPageSource ] raise: BPNoSuchSessionException .
You can’t perform that action at this time.
0 commit comments