mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-01-23 14:28:17 -05:00
Manual group ordering
This commit is contained in:
@@ -202,7 +202,7 @@ public class ImportExportTest
|
||||
private void checkGroups()
|
||||
{
|
||||
Cursor cursor = db.getGroupCursor();
|
||||
int index = 1;
|
||||
int index = db.getGroupCount();
|
||||
|
||||
while(cursor.moveToNext())
|
||||
{
|
||||
@@ -212,7 +212,7 @@ public class ImportExportTest
|
||||
|
||||
assertEquals(expectedGroupName, group._id);
|
||||
|
||||
index++;
|
||||
index--;
|
||||
}
|
||||
cursor.close();
|
||||
}
|
||||
|
||||
@@ -193,14 +193,14 @@ public class MainActivityTest
|
||||
assertEquals("All", groupTabs.getTabAt(0).getText().toString());
|
||||
assertEquals("One", groupTabs.getTabAt(1).getText().toString());
|
||||
|
||||
// Adding another group should have them sorted alphabetically
|
||||
// Adding another group should have it added to the end
|
||||
db.insertGroup("Alphabetical two");
|
||||
activityController.pause();
|
||||
activityController.resume();
|
||||
assertEquals(3, groupTabs.getTabCount());
|
||||
assertEquals("All", groupTabs.getTabAt(0).getText().toString());
|
||||
assertEquals("Alphabetical two", groupTabs.getTabAt(1).getText().toString());
|
||||
assertEquals("One", groupTabs.getTabAt(2).getText().toString());
|
||||
assertEquals("One", groupTabs.getTabAt(1).getText().toString());
|
||||
assertEquals("Alphabetical two", groupTabs.getTabAt(2).getText().toString());
|
||||
|
||||
// Removing a group should also change the list
|
||||
db.deleteGroup("Alphabetical two");
|
||||
|
||||
Reference in New Issue
Block a user