You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public void testGetFields() {
Assert.assertEquals(
this.classFile_CFParse_Original.getFields().get(0).getName(),
this.classFile_CFParse_Converted.getFields().get(0).getName());
}
Add this test back after having fixed the converter
public void testGetMethods() {
/*
int fieldCount = this.classFile_CFParse_Original.getMethods().length();
for (int i = 0; i < fieldCount; i++) {
Assert.assertEquals(
this.classFile_CFParse_Original.getMethods().get(i)
.toString(),
this.classFile_CFParse_Converted.getMethods().get(i)
.toString());
}
*/
}
The text was updated successfully, but these errors were encountered:
agadfs
changed the title
GetMethodsConversionTest
GetMethodsConversionTest (Change getFields method)
Dec 19, 2024
agadfs
changed the title
GetMethodsConversionTest (Change getFields method)
GetMethodsConversionTest (Change getFields method and add test after fixing converter)
Dec 19, 2024
Change
getName()
from both totoString()
at:Add this test back after having fixed the converter
The text was updated successfully, but these errors were encountered: