зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
927 B
Java
26 строки
927 B
Java
#filter substitution
|
|
/* 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 interface Assert {
|
|
void dumpLog(String message);
|
|
void dumpLog(String message, Throwable t);
|
|
void setLogFile(String filename);
|
|
void setTestName(String testName);
|
|
|
|
void finalize();
|
|
void ok(boolean condition, String name, String diag);
|
|
void is(Object a, Object b, String name);
|
|
void isnot(Object a, Object b, String name);
|
|
void todo(boolean condition, String name, String diag);
|
|
void todo_is(Object a, Object b, String name);
|
|
void todo_isnot(Object a, Object b, String name);
|
|
void info(String name, String message);
|
|
|
|
// robocop-specific asserts
|
|
void ispixel(int actual, int r, int g, int b, String name);
|
|
}
|