diff options
author | Taufan Aditya <toopay@taufanaditya.com> | 2012-03-28 11:03:38 +0200 |
---|---|---|
committer | Taufan Aditya <toopay@taufanaditya.com> | 2012-03-28 11:03:38 +0200 |
commit | ac5373a8979537f5454af6b911108541140a35d7 (patch) | |
tree | 1c44501569f2c55031325aa58d8d6ab9ffa35503 /tests/mocks/libraries | |
parent | ca16c4ff1aa0cf5ebfbe877e9be755c0b7d2061c (diff) |
Adding core and libraries mock classes
Diffstat (limited to 'tests/mocks/libraries')
-rw-r--r-- | tests/mocks/libraries/parser.php | 3 | ||||
-rw-r--r-- | tests/mocks/libraries/table.php | 3 | ||||
-rw-r--r-- | tests/mocks/libraries/typography.php | 3 | ||||
-rw-r--r-- | tests/mocks/libraries/useragent.php | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/tests/mocks/libraries/parser.php b/tests/mocks/libraries/parser.php new file mode 100644 index 000000000..81dcfb37e --- /dev/null +++ b/tests/mocks/libraries/parser.php @@ -0,0 +1,3 @@ +<?php + +class Mock_Libraries_Parser extends CI_Parser {}
\ No newline at end of file diff --git a/tests/mocks/libraries/table.php b/tests/mocks/libraries/table.php new file mode 100644 index 000000000..a1e998bb4 --- /dev/null +++ b/tests/mocks/libraries/table.php @@ -0,0 +1,3 @@ +<?php + +class Mock_Libraries_Table extends CI_Table {}
\ No newline at end of file diff --git a/tests/mocks/libraries/typography.php b/tests/mocks/libraries/typography.php new file mode 100644 index 000000000..0f76c5745 --- /dev/null +++ b/tests/mocks/libraries/typography.php @@ -0,0 +1,3 @@ +<?php + +class Mock_Libraries_Typography extends CI_Typography {}
\ No newline at end of file diff --git a/tests/mocks/libraries/useragent.php b/tests/mocks/libraries/useragent.php new file mode 100644 index 000000000..c957cde5b --- /dev/null +++ b/tests/mocks/libraries/useragent.php @@ -0,0 +1,3 @@ +<?php + +class Mock_Libraries_UserAgent extends CI_User_agent {}
\ No newline at end of file |