Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
48d685c9
Commit
48d685c9
authored
Sep 12, 2013
by
Dorian Villet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing a regex that have gone wrong.
parent
a08d8410
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
14 additions
and
0 deletions
+14
-0
tests/Solarium/Tests/Core/Query/Result/ResultTest.php
tests/Solarium/Tests/Core/Query/Result/ResultTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/ResponseParser/Component/FacetSetTest.php
...ueryType/Select/ResponseParser/Component/FacetSetTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/Result/Debug/DebugTest.php
...olarium/Tests/QueryType/Select/Result/Debug/DebugTest.php
+3
-0
tests/Solarium/Tests/QueryType/Select/Result/Debug/DetailTest.php
...larium/Tests/QueryType/Select/Result/Debug/DetailTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/Result/Debug/DocumentTest.php
...rium/Tests/QueryType/Select/Result/Debug/DocumentTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/Result/Debug/TimingPhaseTest.php
...m/Tests/QueryType/Select/Result/Debug/TimingPhaseTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/Result/Facet/RangeTest.php
...olarium/Tests/QueryType/Select/Result/Facet/RangeTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/Result/Grouping/FieldGroupTest.php
...Tests/QueryType/Select/Result/Grouping/FieldGroupTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/Result/Grouping/QueryGroupTest.php
...Tests/QueryType/Select/Result/Grouping/QueryGroupTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/Result/Grouping/ValueGroupTest.php
...Tests/QueryType/Select/Result/Grouping/ValueGroupTest.php
+1
-0
tests/Solarium/Tests/QueryType/Select/Result/ResultTest.php
tests/Solarium/Tests/QueryType/Select/Result/ResultTest.php
+2
-0
No files found.
tests/Solarium/Tests/Core/Query/Result/ResultTest.php
View file @
48d685c9
...
@@ -44,6 +44,7 @@ class ResultTest extends \PHPUnit_Framework_TestCase
...
@@ -44,6 +44,7 @@ class ResultTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$result
;
protected
$result
;
protected
$client
;
protected
$query
;
protected
$query
;
protected
$response
;
protected
$response
;
protected
$headers
;
protected
$headers
;
...
...
tests/Solarium/Tests/QueryType/Select/ResponseParser/Component/FacetSetTest.php
View file @
48d685c9
...
@@ -37,6 +37,7 @@ use Solarium\QueryType\Select\Query\Query;
...
@@ -37,6 +37,7 @@ use Solarium\QueryType\Select\Query\Query;
class
FacetSetTest
extends
\PHPUnit_Framework_TestCase
class
FacetSetTest
extends
\PHPUnit_Framework_TestCase
{
{
protected
$parser
;
protected
$facetSet
;
protected
$facetSet
;
protected
$query
;
protected
$query
;
...
...
tests/Solarium/Tests/QueryType/Select/Result/Debug/DebugTest.php
View file @
48d685c9
...
@@ -40,10 +40,13 @@ class DebugTest extends \PHPUnit_Framework_TestCase
...
@@ -40,10 +40,13 @@ class DebugTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$result
;
protected
$result
;
protected
$queryString
;
protected
$queryParser
;
protected
$queryParser
;
protected
$parsedQuery
;
protected
$otherQuery
;
protected
$otherQuery
;
protected
$explain
;
protected
$explain
;
protected
$explainOther
;
protected
$explainOther
;
protected
$explainData
;
protected
$timing
;
protected
$timing
;
public
function
setUp
()
public
function
setUp
()
...
...
tests/Solarium/Tests/QueryType/Select/Result/Debug/DetailTest.php
View file @
48d685c9
...
@@ -40,6 +40,7 @@ class DetailTest extends \PHPUnit_Framework_TestCase
...
@@ -40,6 +40,7 @@ class DetailTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$result
;
protected
$result
;
protected
$value
;
protected
$match
;
protected
$match
;
protected
$description
;
protected
$description
;
...
...
tests/Solarium/Tests/QueryType/Select/Result/Debug/DocumentTest.php
View file @
48d685c9
...
@@ -40,6 +40,7 @@ class DocumentTest extends \PHPUnit_Framework_TestCase
...
@@ -40,6 +40,7 @@ class DocumentTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$result
;
protected
$result
;
protected
$value
;
protected
$match
;
protected
$match
;
protected
$description
;
protected
$description
;
protected
$key
;
protected
$key
;
...
...
tests/Solarium/Tests/QueryType/Select/Result/Debug/TimingPhaseTest.php
View file @
48d685c9
...
@@ -40,6 +40,7 @@ class TimingPhaseTest extends \PHPUnit_Framework_TestCase
...
@@ -40,6 +40,7 @@ class TimingPhaseTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$result
;
protected
$result
;
protected
$name
;
protected
$time
;
protected
$time
;
protected
$timings
;
protected
$timings
;
...
...
tests/Solarium/Tests/QueryType/Select/Result/Facet/RangeTest.php
View file @
48d685c9
...
@@ -40,6 +40,7 @@ class RangeTest extends \PHPUnit_Framework_TestCase
...
@@ -40,6 +40,7 @@ class RangeTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$facet
;
protected
$facet
;
protected
$values
;
protected
$before
;
protected
$before
;
protected
$after
;
protected
$after
;
protected
$between
;
protected
$between
;
...
...
tests/Solarium/Tests/QueryType/Select/Result/Grouping/FieldGroupTest.php
View file @
48d685c9
...
@@ -40,6 +40,7 @@ class FieldGroupTest extends \PHPUnit_Framework_TestCase
...
@@ -40,6 +40,7 @@ class FieldGroupTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$group
;
protected
$group
;
protected
$matches
;
protected
$numberOfGroups
;
protected
$numberOfGroups
;
protected
$items
;
protected
$items
;
...
...
tests/Solarium/Tests/QueryType/Select/Result/Grouping/QueryGroupTest.php
View file @
48d685c9
...
@@ -40,6 +40,7 @@ class QueryGroupTest extends \PHPUnit_Framework_TestCase
...
@@ -40,6 +40,7 @@ class QueryGroupTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$group
;
protected
$group
;
protected
$matches
;
protected
$numFound
;
protected
$numFound
;
protected
$start
;
protected
$start
;
protected
$maximumScore
;
protected
$maximumScore
;
...
...
tests/Solarium/Tests/QueryType/Select/Result/Grouping/ValueGroupTest.php
View file @
48d685c9
...
@@ -40,6 +40,7 @@ class ValueGroupTest extends \PHPUnit_Framework_TestCase
...
@@ -40,6 +40,7 @@ class ValueGroupTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$group
;
protected
$group
;
protected
$value
;
protected
$numFound
;
protected
$numFound
;
protected
$start
;
protected
$start
;
protected
$items
;
protected
$items
;
...
...
tests/Solarium/Tests/QueryType/Select/Result/ResultTest.php
View file @
48d685c9
...
@@ -42,6 +42,7 @@ class ResultTest extends \PHPUnit_Framework_TestCase
...
@@ -42,6 +42,7 @@ class ResultTest extends \PHPUnit_Framework_TestCase
*/
*/
protected
$result
;
protected
$result
;
protected
$numFound
;
protected
$docs
;
protected
$docs
;
protected
$components
;
protected
$components
;
protected
$facetSet
;
protected
$facetSet
;
...
@@ -50,6 +51,7 @@ class ResultTest extends \PHPUnit_Framework_TestCase
...
@@ -50,6 +51,7 @@ class ResultTest extends \PHPUnit_Framework_TestCase
protected
$grouping
;
protected
$grouping
;
protected
$stats
;
protected
$stats
;
protected
$debug
;
protected
$debug
;
protected
$spellcheck
;
public
function
setUp
()
public
function
setUp
()
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment