contrib/mnit_test: move mnit_simple to contrib/mnit_test
[nit.git] / contrib / mnit_test / src / static / gitweb.css
diff --git a/examples/mnit_simple/src/test_assets_and_resources.nit b/examples/mnit_simple/src/test_assets_and_resources.nit
deleted file mode 100644 (file)
index c63b556..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-# This file is part of NIT ( http://www.nitlanguage.org ).
-#
-# Copyright 2014 Romain Chanoir <romain.chanoir@viacesi.fr>
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# Test for the asserts_and_resources module of App.nit framework
-module test_assets_and_resources
-
-import simple_android
-intrude import android::assets_and_resources
-
-redef class App
-       redef fun input( ie )
-       do
-               if ie isa PointerEvent and ie.depressed then 
-                       test_assets
-                       test_resources
-               end
-               return super
-       end
-
-       # Testing the assets manager
-       fun test_assets
-       do
-               assert not asset_manager.open_fd("testsound.ogg").is_java_null
-       end
-
-       # Testing the resources manager
-       fun test_resources do
-               assert resource_manager.string("string_test") == "string test"
-               assert resource_manager.boolean("test_bool") == true
-               assert resource_manager.dimension("test_dimen_1") == 25
-               assert resource_manager.dimension("test_dimen_2") == 150
-       end
-end