# -*- coding: utf-8 -*-
# $Id: HaskellIO.py 1634 2013-04-12 15:36:36Z amelung $
#
# Copyright (c) 2007-2011 Otto-von-Guericke-Universität Magdeburg
#
# This file is part of ECSpooler.
import logging
# local imports
# set a modified wrapper code for the semantic check
WRAPPER_TEMPLATE = \
"""module Main where
import Model
import Student
${helpFunctions}
${testFunction}
o1 = Model.${testData}
o2 = Student.${testData}
main = do v1 <- o1
v2 <- o2
putStr("isEqual=" ++ show(haskell_backend_internal_equality_test (v1) (v2)) ++ ";;expected=" ++ show(v1) ++ ";;received=" ++ show(v2))
"""
# modify schema for testing
"""
Tests functions which return values of type Haskell I/O.
"""
"""
"""