You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests should have a class name that ends with Test (i.e. ControllerTest) with test methods that start with test (i.e. testManager). Use TestNG annotations (e.g. @Test, @BeforeClass, @BeforeMethod) to indicate test and setUp/tearDown methods.
Test facilities
Use utilities to spawn test fixtures whenever necessary. For example, use ZkStarter and KafkaStarterUtils to start ZooKeeper and Kafka. Put common utilities in uReplicator-Common module for other modules to use. For example, uReplicator-Manager and uReplicator-Controller both use ManagerRequestURLBuilder to build requests.