#Example from David Carlisle to John Lam on 25 Feb 2000, with well-formedness and XSLT semantics corrections
from Xml.Xslt import test_harness
sheet_1 = """
"""
source_1="""
1 2
4 5
310
2 1
"""
expected_1="""
54"""
def Test(tester):
source = test_harness.FileInfo(string=source_1)
sheet = test_harness.FileInfo(string=sheet_1)
test_harness.XsltTest(tester, source, [sheet], expected_1)
return