- tearDown() - Method in class com.activeandroid.test.ActiveAndroidTestCase
-
- testAll() - Method in class com.activeandroid.test.query.FromTest
-
- testAs() - Method in class com.activeandroid.test.query.FromTest
-
- testBlockAndLineComment() - Method in class com.activeandroid.test.parser.ParserTest
-
Should ignore a line comment token inside a block comment.
- testBlockComment() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to handle a block comment.
- testBlockCommentWithSemicolon() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to handle a block comment that contains a semicolon.
- testBlockCommentWithString() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to handle a block comment that contains string tokens.
- testBooleanColumnType() - Method in class com.activeandroid.test.ModelTest
-
Boolean should handle integer (0/1) and boolean (false/true) values.
- testColumnNamesDefaulToFieldNames() - Method in class com.activeandroid.test.ModelTest
-
Column names should default to the field name.
- testComplex() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to handle a script that contains anything nasty I can thing of right now.
- testCountEmptyResult() - Method in class com.activeandroid.test.query.CountTest
-
Should return the same count as there are entries in the result set if the where-clause
matches zero entries.
- testCountGroupBy() - Method in class com.activeandroid.test.query.CountTest
-
Should return the total number of rows, even if the rows are grouped.
- testCountGroupBy() - Method in class com.activeandroid.test.query.ExistsTest
-
Should not change the result if group by is used.
- testCountGroupByEmpty() - Method in class com.activeandroid.test.query.ExistsTest
-
Should not exist if group by eliminates all rows.
- testCountOrderBy() - Method in class com.activeandroid.test.query.CountTest
-
Should not change the result if order by is used.
- testCountOrderBy() - Method in class com.activeandroid.test.query.ExistsTest
-
Should not change the result if order by is used.
- testCountOrderBySql() - Method in class com.activeandroid.test.query.CountTest
-
Shouldn't include order by as it has no influence on the result of count and
should improve performance.
- testCountOrderBySql() - Method in class com.activeandroid.test.query.ExistsTest
-
Shouldn't include order by as it has no influence on the result of exists and
should improve performance.
- testCountTable() - Method in class com.activeandroid.test.query.CountTest
-
Should return the same count as there are entries in the result set/table.
- testCountTableSql() - Method in class com.activeandroid.test.query.CountTest
-
Should be a simple count for the entire table.
- testCountTableSql() - Method in class com.activeandroid.test.query.ExistsTest
-
Should be a simple exists for the entire table.
- testCountWhereClause() - Method in class com.activeandroid.test.query.CountTest
-
Should return the same count as there are entries in the result set if the where-clause
matches several entries.
- testCountWhereClauseSql() - Method in class com.activeandroid.test.query.CountTest
-
Should be a count with the specified where-clause.
- testCountWhereClauseSql() - Method in class com.activeandroid.test.query.ExistsTest
-
Should be an exists with the specified where-clause.
- testCreateConfigurationWithMockModel() - Method in class com.activeandroid.test.ConfigurationTest
-
- testDefaultValue() - Method in class com.activeandroid.test.ConfigurationTest
-
- testDelete() - Method in class com.activeandroid.test.query.DeleteTest
-
- testDelimitedMigration() - Method in class com.activeandroid.test.parser.ParserConfigurationTest
-
Should use the new parser if configured to do so.
- testEqualsDifferentModel() - Method in class com.activeandroid.test.ModelTest
-
Equals should not be true for different model classes.
- testEqualsDifferentRows() - Method in class com.activeandroid.test.ModelTest
-
Two different rows in a table should not be equal (different ids).
- testEqualsNonModel() - Method in class com.activeandroid.test.ModelTest
-
Equals should be type-safe.
- testEqualsOnNew() - Method in class com.activeandroid.test.ModelTest
-
A new object does not have PK assigned yet,
therefore by default it is equal only to itself.
- testExistsEmptyResult() - Method in class com.activeandroid.test.query.ExistsTest
-
Should return false since the where-clause matches zero rows and thus the result set
is empty.
- testExistsTable() - Method in class com.activeandroid.test.query.ExistsTest
-
Should return true since the result set/table isn't empty.
- testExistsWhereClause() - Method in class com.activeandroid.test.query.ExistsTest
-
Should return true since the where-clause matches rows and thus the result set isn't
empty.
- testFrom() - Method in class com.activeandroid.test.query.DeleteTest
-
- testFrom() - Method in class com.activeandroid.test.query.SelectTest
-
- testGetTableInfos() - Method in class com.activeandroid.test.CacheTest
-
- testGroupByHaving() - Method in class com.activeandroid.test.query.FromTest
-
- testHashCode() - Method in class com.activeandroid.test.ModelTest
-
Tests hashcode for new instances.
- testHashCodeDifferentRows() - Method in class com.activeandroid.test.ModelTest
-
Two rows in a table should have different hashcodes.
- testInvalidBlockComment() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to parse a script that incorrectly closes a block comment twice.
- testJoins() - Method in class com.activeandroid.test.query.FromTest
-
- testJoinTypes() - Method in class com.activeandroid.test.query.FromTest
-
- testLegacyMigration() - Method in class com.activeandroid.test.parser.ParserConfigurationTest
-
Should try to use the legacy parser by default, which is be unable to handle the SQL script.
- testLimit() - Method in class com.activeandroid.test.query.FromTest
-
- testLimitOffset() - Method in class com.activeandroid.test.query.FromTest
-
- testLineAndBlockEndComment() - Method in class com.activeandroid.test.parser.ParserTest
-
Should ignore a block comment end token inside a line comment.
- testLineComment() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to parse a multi-line statement that has an embedded line comment.
- testLineCommentWithSemicolon() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to handle a line comment that contains a semicolon.
- testLineCommentWithString() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to handle a line comment that contains string tokens.
- testOffset() - Method in class com.activeandroid.test.query.FromTest
-
- testOrderBy() - Method in class com.activeandroid.test.query.FromTest
-
- testSelectAll() - Method in class com.activeandroid.test.query.SelectTest
-
- testSelectDistinct() - Method in class com.activeandroid.test.query.SelectTest
-
- testSelectDistinctColumns() - Method in class com.activeandroid.test.query.SelectTest
-
- testSelectEmpty() - Method in class com.activeandroid.test.query.SelectTest
-
- testSelectStringColumns() - Method in class com.activeandroid.test.query.SelectTest
-
- testSingleJoin() - Method in class com.activeandroid.test.query.FromTest
-
- testStringWithBlockComment() - Method in class com.activeandroid.test.parser.ParserTest
-
Should ignore block comment tokens inside strings.
- testStringWithLineComment() - Method in class com.activeandroid.test.parser.ParserTest
-
Should ignore a line comment token inside a string.
- testStringWithSemicolon() - Method in class com.activeandroid.test.parser.ParserTest
-
Should ignore semicolons inside strings.
- testStringWithWhitespace() - Method in class com.activeandroid.test.parser.ParserTest
-
Should not clobber whitespace in strings.
- testTwoStatements() - Method in class com.activeandroid.test.parser.ParserTest
-
Should be able to parse a script with two multi-line statments, even if the last statement
is not terminated by a semicolon.
- testUpdate() - Method in class com.activeandroid.test.query.UpdateTest
-
- testUpdateSet() - Method in class com.activeandroid.test.query.UpdateTest
-
- testUpdateWhereNoArguments() - Method in class com.activeandroid.test.query.UpdateTest
-
- testUpdateWhereWithArguments() - Method in class com.activeandroid.test.query.UpdateTest
-
- testWhereAlternateAndOrChaining() - Method in class com.activeandroid.test.query.FromTest
-
- testWhereAndChaining() - Method in class com.activeandroid.test.query.FromTest
-
- testWhereAndOrChaining() - Method in class com.activeandroid.test.query.FromTest
-
- testWhereChaining() - Method in class com.activeandroid.test.query.FromTest
-
- testWhereNoArguments() - Method in class com.activeandroid.test.query.FromTest
-
- testWhereOrChaining() - Method in class com.activeandroid.test.query.FromTest
-
- testWhereWithArguments() - Method in class com.activeandroid.test.query.FromTest
-
- testWhereWithNoArgumentsAndWithArguments() - Method in class com.activeandroid.test.query.FromTest
-
- testWhitespace() - Method in class com.activeandroid.test.parser.ParserTest
-
Should reduce unnecessary whitespace.
- two_statements - Static variable in class com.activeandroid.test.R.raw
-