44
55class ExcelTester extends ExcelTestCase {
66
7- /**
8- * Test create
9- * @return [type] [description]
10- */
11- public function testCreate ()
12- {
13- $ created = $ this ->excel ->create ('test ' , function () {});
14- $ this ->assertEquals ($ this ->writer , $ created );
15- }
16-
17- /**
18- * Test load
19- * @return [type] [description]
20- */
21- public function testLoad ()
22- {
23- $ loaded = $ this ->excel ->load ('test.csv ' , function () {});
24- $ this ->assertEquals ($ this ->reader , $ loaded );
25- }
26-
277 /**
288 * Test select sheets
29- * @return [type] [description]
9+ * @return
3010 */
3111 public function testSelectSheets ()
3212 {
@@ -36,7 +16,7 @@ public function testSelectSheets()
3616
3717 /**
3818 * Test select sheets
39- * @return [type] [description]
19+ * @return
4020 */
4121 public function testSelectSheetsByIndex ()
4222 {
@@ -46,7 +26,7 @@ public function testSelectSheetsByIndex()
4626
4727 /**
4828 * Test the share view
49- * @return [type] [description]
29+ * @return
5030 */
5131 public function testShareView ()
5232 {
@@ -56,12 +36,11 @@ public function testShareView()
5636
5737 /**
5838 * Test load view
59- * @return [type] [description]
39+ * @return
6040 */
6141 public function testLoadView ()
6242 {
6343 $ selected = $ this ->excel ->loadView ('filename ' , array ('test ' ), array ('test ' ));
6444 $ this ->assertEquals ($ this ->writer , $ selected );
6545 }
66-
6746}
0 commit comments