gecko/build/mobile/robocop/FennecTalosAssert.java.in

52 lines
1.5 KiB
Java
Raw Normal View History

#filter substitution
2012-05-21 04:12:37 -07:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package @ANDROID_PACKAGE_NAME@;
public class FennecTalosAssert implements Assert {
public FennecTalosAssert() { }
/**
* Write information to a logfile and logcat
*/
public void dumpLog(String message) {
FennecNativeDriver.log(FennecNativeDriver.LogLevel.INFO, message);
}
/** Write information to a logfile and logcat */
public void dumpLog(String message, Throwable t) {
FennecNativeDriver.log(FennecNativeDriver.LogLevel.INFO, message, t);
}
/**
* Set the filename used for dumpLog.
*/
public void setLogFile(String filename) {
FennecNativeDriver.setLogFile(filename);
}
public void setTestName(String testName) { }
public void finalize() { }
public void ok(boolean condition, String name, String diag) { }
public void is(Object a, Object b, String name) { }
public void isnot(Object a, Object b, String name) { }
public void ispixel(int actual, int r, int g, int b, String name) { }
public void todo(boolean condition, String name, String diag) { }
public void todo_is(Object a, Object b, String name) { }
public void todo_isnot(Object a, Object b, String name) { }
public void info(String name, String message) { }
}