Browse Source

Added newline at end files.

tags/2.0.0-beta
Rusinov Maxim 12 years ago
parent
commit
452be102c6
  1. 2
      tests/unit/DatabaseTestCase.php
  2. 2
      tests/unit/framework/db/sqlite/SqliteActiveRecordTest.php
  3. 2
      tests/unit/framework/db/sqlite/SqliteCommandTest.php
  4. 2
      tests/unit/framework/db/sqlite/SqliteQueryTest.php

2
tests/unit/DatabaseTestCase.php

@ -47,4 +47,4 @@ class DatabaseTestCase extends TestCase
$this->db = $db;
return $db;
}
}
}

2
tests/unit/framework/db/sqlite/SqliteActiveRecordTest.php

@ -9,4 +9,4 @@ class SqliteActiveRecordTest extends \yiiunit\framework\db\ActiveRecordTest
$this->driverName = 'sqlite';
parent::setUp();
}
}
}

2
tests/unit/framework/db/sqlite/SqliteCommandTest.php

@ -18,4 +18,4 @@ class SqliteCommandTest extends \yiiunit\framework\db\CommandTest
$command = $db->createCommand($sql);
$this->assertEquals("SELECT \"id\", 't'.\"name\" FROM 'tbl_customer' t", $command->sql);
}
}
}

2
tests/unit/framework/db/sqlite/SqliteQueryTest.php

@ -17,4 +17,4 @@ class SqliteQueryTest extends \yiiunit\framework\db\QueryTest
$this->driverName = 'sqlite';
parent::setUp();
}
}
}

Loading…
Cancel
Save