1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-23 11:56:00 +00:00

Ok finish the important staff, the other are already tested hundreds of times

This commit is contained in:
Makis Maropoulos
2016-07-07 01:36:38 +02:00
parent f5f7f22245
commit 7723c22ef6
6 changed files with 261 additions and 256 deletions

View File

@@ -1,7 +1,14 @@
package iris
/*
The most iris.go file implementation tested at other files like context_test, http_test, the untested are the Static methods, the favicon and some interfaces, which I already
tested them on production and I don't expect unexpected behavior but if you think we need more:
CONTRIBUTE & DISCUSSION ABOUT TESTS TO: https://github.com/iris-contrib/tests
*/
// Notes:
//
// We use Default := New() and not api := New() or just Default because we want to cover as much code as possible
// The tests are usually end-to-end, except some features like plugins, which we have normal unit testing and end-to-end tests
// We use Default := New() via initDefault() and not api := New() neither just Default. because we want to cover as much code as possible
// The tests are mostly end-to-end, except some features like plugins.
//