Ejemplo n.º 1
0
import helloWorld

print(helloWorld.helloWorld())



Ejemplo n.º 2
0
import helloWorld

print "INITIALIZING HELLO WORLD"
print "userSetup.py says '{}'".format(helloWorld.helloWorld())
Ejemplo n.º 3
0
def test_helloWorld():
    nose.tools.eq_(helloWorld.helloWorld(), "Hello World!")
Ejemplo n.º 4
0
 def test_add(self):
     self.assertEqual(helloWorld.helloWorld(), "hello python sonar")
Ejemplo n.º 5
0
def test_helloWorld():
    assert helloWorld.helloWorld() == "hello world"
 def test_greeting(self):
     greeting = helloWorld.helloWorld("Hello World!")
     self.assertEqual(greeting, "Hello World!")
	def test_greeting(self):
		greeting = helloWorld.helloWorld("Hello World!")
		self.assertEqual(greeting, "Hello World!")