def checkNumberOfDependentSpecies(testId):
    print string.ljust("Check " + testId, rpadding),
    errorFlag = False
    value = int(readLine())
    n = rrPython.getNumberOfDependentSpecies()
    if n != value:
        errorFlag = True
    print passMsg(errorFlag)
Beispiel #2
0
def checkNumberOfDependentSpecies(testId):
  print string.ljust ("Check " + testId, rpadding),
  errorFlag = False
  value = int (readLine())
  n = rrPython.getNumberOfDependentSpecies()
  if n != value:
    errorFlag = True
  print passMsg (errorFlag)
Beispiel #3
0
import rrPython
import os
import csv

os.chdir("C:\\RoadRunner\\bin")

function = "getNumberOfDependentSpecies"

try:
    num = rrPython.getNumberOfDependentSpecies()
    if str(num) is not False:
        result = "True"
    else:
        result = "False"
except:
    result = "False"


PythonTestResults = open("C:\\RoadRunner\\PythonTestResults.csv", "a")
writer = csv.writer(PythonTestResults)
writevar = function + "=" + result
writer.writerow([writevar])
PythonTestResults.close()
import rrPython
import os
import csv
os.chdir('C:\\RoadRunner\\bin')

function = 'getNumberOfDependentSpecies'

try:
    num = rrPython.getNumberOfDependentSpecies()
    if str(num) is not False:
        result = 'True'
    else:
        result = 'False'
except:
    result = 'False'

PythonTestResults = open('C:\\RoadRunner\\PythonTestResults.csv', 'a')
writer = csv.writer(PythonTestResults)
writevar = function + '=' + result
writer.writerow([writevar])
PythonTestResults.close()