Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently working in some racket programs, specifically in the PLAI's language of the Programming Languages: Application and Interpretation Book, and there is a function called test, i was wondering how to test the error throwing in racket? Does anyone knows how to do this?

Greetings

(I'm not a native english speaker, i hope this question can be understand)

share|improve this question
Yes, your question is very understandable. However, if you want advice on how to improve your English, here are two comments: 1. The word "I" is a proper noun and is capitalized even when it's not at the beginning of a sentence. 2. Usually, if you say something like "greetings" (which is often not needed), it goes at the beginning of what you say; there are other phrases you use at the end. Again, this is only intended as friendly advice, and your question is understandable as it is. – Daniel H Sep 19 '11 at 0:21

1 Answer

There is test/exn that you can use to test error messages, for example:

(test/exn (error "foo") "foo")

but note that the docs say that it can test only exceptions that were explicitly raised by your code. The idea is that your code should check for errors and raise them, otherwise you have a bug.

(For testing of "real" racket code, see rackunit.

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.