Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm currently grading assignments for a course on SML. I've written some test cases to automatically check correctness of functions in the students' assignments, and I'd like to be able to import their code and then run the test cases against that code. I'm imagining something similar to python import semantics. Right now, the best solution I have is to copy-paste this code at the bottom of each assignment. Is this possible with SML?

share|improve this question

2 Answers

up vote 2 down vote accepted

Use use:

use "filename.sml";
(* your test cases here *)

If you have the student solution in "student.sml" and your test cases in "tests.sml":

use "student.sml";
use "tests.sml";
share|improve this answer
Can you use the use function inside another SML file? I have tried and I always get an operator is not a function error. – rlandster Feb 9 at 14:55
rlandster, yes, you can have use in your SML files. It behaves as any other function. – Emil Vikström Feb 10 at 21:00

Look at QCheck, a unit testing library for SML

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.