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
6 // All tests need and require the testing framework, which includes other
7 // dependencies accordingly...
8 testImplementation project(":modules:tac")
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()