public void ExecuteCreateIndexTest() { string dbfile = "taskaludb6.sqlite"; CreateSQLiteDBFlie(dbfile); CreateTableTaskList(dbfile); string path = Path.GetTempPath() + "\\" + dbfile; Debug.Assert(SQLiteClass.ExecuteCreateIndex(path, "tasklist", "index_tasklist_name", "name")); }