public class com.google.common.collect.testing.testers.CollectionIsEmptyTester extends com.google.common.collect.testing.AbstractCollectionTester
{
public void <init>()
{
com.google.common.collect.testing.testers.CollectionIsEmptyTester v;
v := @this: com.google.common.collect.testing.testers.CollectionIsEmptyTester;
specialinvoke v.<com.google.common.collect.testing.AbstractCollectionTester: void <init>()>();
return;
}
public void testIsEmpty_yes()
{
com.google.common.collect.testing.testers.CollectionIsEmptyTester v;
boolean v;
java.util.Collection v;
v := @this: com.google.common.collect.testing.testers.CollectionIsEmptyTester;
v = v.<com.google.common.collect.testing.testers.CollectionIsEmptyTester: java.util.Collection collection>;
v = interfaceinvoke v.<java.util.Collection: boolean isEmpty()>();
staticinvoke <com.google.common.collect.testing.testers.CollectionIsEmptyTester: void assertTrue(java.lang.String,boolean)>("isEmpty() should return true", v);
return;
}
public void testIsEmpty_no()
{
com.google.common.collect.testing.testers.CollectionIsEmptyTester v;
boolean v;
java.util.Collection v;
v := @this: com.google.common.collect.testing.testers.CollectionIsEmptyTester;
v = v.<com.google.common.collect.testing.testers.CollectionIsEmptyTester: java.util.Collection collection>;
v = interfaceinvoke v.<java.util.Collection: boolean isEmpty()>();
staticinvoke <com.google.common.collect.testing.testers.CollectionIsEmptyTester: void assertFalse(java.lang.String,boolean)>("isEmpty() should return false", v);
return;
}
}