| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
To run, clone this repo and make sure you have the Android Studio installed:
package net.zetetic.tests;
import net.sqlcipher.database.SQLiteDatabase;
public class DemoTest extends SQLCipherTest {
@Override
public boolean execute(SQLiteDatabase database) {
try {
// Add your scenario here
return true;
}catch (Exception e){
return false;
}
}
@Override
public String getName() {
return "Demo Test";
}
}
tests.add(new DemoTest());
| Back | FazBrowse Home | New Git URL |