DbConfigurationTestRule.java
368 Bytes
package org.thingsboard.server.mqtt;
import org.junit.rules.TestRule;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
/**
* Created by ashvayka on 11.05.18.
*/
public class DbConfigurationTestRule implements TestRule {
@Override
public Statement apply(Statement base, Description description) {
return null;
}
}