c63b556de539fd344615b409608898c768b80fee
[nit.git] / examples / mnit_simple / src / test_assets_and_resources.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2014 Romain Chanoir <romain.chanoir@viacesi.fr>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Test for the asserts_and_resources module of App.nit framework
18 module test_assets_and_resources
19
20 import simple_android
21 intrude import android::assets_and_resources
22
23 redef class App
24 redef fun input( ie )
25 do
26 if ie isa PointerEvent and ie.depressed then
27 test_assets
28 test_resources
29 end
30 return super
31 end
32
33 # Testing the assets manager
34 fun test_assets
35 do
36 assert not asset_manager.open_fd("testsound.ogg").is_java_null
37 end
38
39 # Testing the resources manager
40 fun test_resources do
41 assert resource_manager.string("string_test") == "string test"
42 assert resource_manager.boolean("test_bool") == true
43 assert resource_manager.dimension("test_dimen_1") == 25
44 assert resource_manager.dimension("test_dimen_2") == 150
45 end
46 end