# -*- coding: utf-8 -*-
# $Id: testJavac.py 1616 2012-07-31 13:56:08Z amelung $
#
# Copyright (c) 2007-2011 Otto-von-Guericke-Universität Magdeburg
#
# This file is part of ECSpooler.
import unittest
"""
"""
# -- individual tests -----------------------------------------------------
submission = \
"""
public class Test
{
public int max3(int a, int b, int c)
{
return Math.max(a, Math.max(b, c));
}
}
"""
'submission': submission,
'tests': ['simple'],
}
"""_manage_checkSyntax should return False for a syntactical incorrect program"""
if result:
else:
"""_manage_checkSyntax should return True for a correct program"""
#print 'jobId', job.getId()
if result:
else:
def test_suite():
"""
"""
return suite
# -- main ---------------------------------------------------------------------
if __name__ == '__main__':