Exemplo n.º 1
0
 def runTest(self):
     token = 'StyledEditorKit'
     expected = ['Styled', 'Editor', 'Kit']
     self.assertTrue(isEqual(Tokenization.tokenizeToken(token), expected),
                     token + ' is not correctly tokenized')
Exemplo n.º 2
0
 def runTest(self):
     token = 'HTMLEditor'
     expected = ['HTML', 'Editor']
     self.assertTrue(isEqual(Tokenization.tokenizeToken(token), expected),
                     token + ' is not correctly tokenized')
Exemplo n.º 3
0
 def runTest(self):
     token = 'isOSGiCompatible'
     expected = ['is', 'OSGi', 'Compatible']
     self.assertTrue(isEqual(Tokenization.tokenizeToken(token), expected),
                     token + ' not correctly tokenized')
Exemplo n.º 4
0
	def runTest(self):
		token = 'StyledEditorKit'
		expected = ['Styled', 'Editor', 'Kit']
		self.assertTrue(isEqual(Tokenization.tokenizeToken(token), expected), token + ' is not correctly tokenized')
Exemplo n.º 5
0
	def runTest(self):
		token = 'HTMLEditor'
		expected = ['HTML', 'Editor']
		self.assertTrue(isEqual(Tokenization.tokenizeToken(token), expected), token + ' is not correctly tokenized')
Exemplo n.º 6
0
	def runTest(self):
		token = 'isOSGiCompatible'
		expected = ['is', 'OSGi', 'Compatible']
		self.assertTrue(isEqual(Tokenization.tokenizeToken(token), expected), token + ' not correctly tokenized')