Reimplement descriptor parsing.
[SquirrelJME.git] / emulators / emulator-base / enable-testing.gradle
blob938596125e23bb5d18757632dd0dfa0a9d558a81
1 // This script is included so that the simulator and the other modules that
2 // need testing will work properly with the TestNG-based Simulator
4 dependencies
6         // All tests need and require the testing framework, which includes other
7         // dependencies accordingly...
8         testImplementation project(":modules:tac")
9         
10         // This is not used at runtime, but is required for testing in the hosted
11         // environment to work as the emulator needs to exist.
12         testImplementation project(":emulators:emulator-base")
15 // Include Common Testing Configuration
16 apply from: project.rootProject.findProject(":emulators:emulator-base").
17         projectDir.toPath().resolve("internal-shared-test-config.gradle").toFile()