2016-07-05 13:37:10 +02:00
|
|
|
package iris
|
|
|
|
|
2016-07-07 01:36:38 +02:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2016-07-05 13:37:10 +02:00
|
|
|
// Notes:
|
|
|
|
//
|
2016-07-07 01:36:38 +02:00
|
|
|
// 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.
|
2016-07-05 13:37:10 +02:00
|
|
|
//
|