update test cases

This commit is contained in:
Jesse Boyd 2015-01-18 12:32:25 -08:00
parent cd170915d8
commit 6cac71a26d

View File

@ -148,7 +148,7 @@ public class Test1 {
DBFunc.dbManager = new AbstractDB() { DBFunc.dbManager = new AbstractDB() {
@Override @Override
public void setTrusted(final String world, final Plot plot, final OfflinePlayer player) { public void setTrusted(final String world, final Plot plot, final UUID uuid) {
} }
@Override @Override
@ -164,11 +164,11 @@ public class Test1 {
} }
@Override @Override
public void setHelper(final String world, final Plot plot, final OfflinePlayer player) { public void setHelper(final String world, final Plot plot, final UUID uuid) {
} }
@Override @Override
public void setDenied(final String world, final Plot plot, final OfflinePlayer player) { public void setDenied(final String world, final Plot plot, final UUID uuid) {
} }
@Override @Override
@ -180,15 +180,15 @@ public class Test1 {
} }
@Override @Override
public void removeTrusted(final String world, final Plot plot, final OfflinePlayer player) { public void removeTrusted(final String world, final Plot plot, final UUID uuid) {
} }
@Override @Override
public void removeHelper(final String world, final Plot plot, final OfflinePlayer player) { public void removeHelper(final String world, final Plot plot, final UUID uuid) {
} }
@Override @Override
public void removeDenied(final String world, final Plot plot, final OfflinePlayer player) { public void removeDenied(final String world, final Plot plot, final UUID uuid) {
} }
@Override @Override
@ -223,11 +223,6 @@ public class Test1 {
return 0; return 0;
} }
@Override
public ArrayList<PlotComment> getComments(final String world, final Plot plot, final int tier) {
return null;
}
@Override @Override
public void delete(final String world, final Plot plot) { public void delete(final String world, final Plot plot) {
} }
@ -275,6 +270,11 @@ public class Test1 {
// TODO Auto-generated method stub // TODO Auto-generated method stub
} }
@Override
public ArrayList<PlotComment> getComments(String world, Plot plot, int tier, boolean below) {
return null;
}
}; };
passed = true; passed = true;
} catch (final Throwable e) { } catch (final Throwable e) {