I'm trying to incorporate ScalaTest into my Java project, replacing all JUnit tests by ScalaTests. At one point, I want to check if Guice's Injector injects the correct type. In Java, I have a test like this:

public class InjectorBehaviour {
    @Test
    public void shouldInjectCorrectTypes() {
        Injector injector = Guice.createInjector(new ModuleImpl());
        House house = injector.getInstance(House.class);

        assertTrue(house.door() instanceof WoodenDoor);
        assertTrue(house.window() instanceof BambooWindow);
        assertTrue(house.roof() instanceof SlateRoof);
    }
}

But I have a problem doing the same with ScalaTest:

class InjectorSpec extends Spec {
    describe("An injector") {
        it("should inject the correct types") {
            val injector = Guice.createInjector(new ModuleImpl)
            val house = injector.getInstance(classOf[House])

            assert(house.door instanceof WoodenDoor)
            assert(house.window instanceof BambooWindow)
            assert(house.roof instanceof SlateRoof)
        }
    }
}

It complaints that the value instanceof is not a member of Door/Window/Roof. Can't I use instanceof that way in Scala?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Scala is not Java. Scala just does not have the operator instanceof instead it has a parametric method called isInstanceOf[Type].

link|improve this answer
+1 Yes, this seems to work. I'm a bloody newbie, and thought that most Java constructs would work with Scala. – Oliver Weiler Dec 19 '11 at 14:01
feedback

If you want to be less JUnit-esque and if you want to use ScalaTest's matchers, you can write your own property matcher that matches for type (bar type erasure).

I found this thread to be quite useful: http://groups.google.com/group/scalatest-users/browse_thread/thread/52b75133a5c70786/1440504527566dea?#1440504527566dea

You can then write assertions like: house.door should be (anInstanceOf[WoodenDoor])

instead of

assert(house.door instanceof WoodenDoor)

link|improve this answer
+1 That looks very nice, and even understandable for non-programming people (assuming they know what an instance is :-)). – Oliver Weiler Dec 19 '11 at 15:15
If syntax sugar is what you are after, with some refactoring you might be able to write house.door should be (madeOf[Wood]) or house.door should be (madeOf[Bamboo]). – Guillaume Belrose Dec 19 '11 at 15:34
feedback

Your Answer

 
or
required, but never shown

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