Assets.getBytes returns null in test environment

Posted by ashes999 on Game Development See other posts from Game Development or by ashes999
Published on 2012-09-19T15:00:46Z Indexed on 2012/09/19 21:51 UTC
Read the original article Hit count: 261

Filed under:
|
|

I'm using the latest Haxe (2.10), NME (3.4.3), and MUnit.

I've written some unit tests that need to fetch bitmap data from SWF symbols. The first step is to actually load the SWF data. To do this, I use NME's getByteArray along with the swf library, like so:

var blah:SWF = new SWF(Assets.getBytes("assets/swf/test.swf"));

The call to Assets.getBytes returns null when I'm running this under MUnit. When running my actual game code, I'm able to get the byte array (and consequentially, instantiate the SWF class).

Am I doing something wrong? What am I missing?

Edit: My directory structure is:

. (root
.\assets
.\assets\*.png (other images)
.\assets\swf\*.swf (SWFs)
.\Source\*.hx (source code)
.\Test\*.hx (tests)

© Game Development or respective owner

Related posts about haxe

Related posts about nme