Lines Matching +full:- +full:b
14 $this->assertNotNull($options->getCacheKey());
20 $this->assertNull($options->getCacheKey());
26 $this->assertNull($options->getCacheKey());
32 $this->assertNull($options->getCacheKey());
42 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'sort' => 'date']);
43 $this->assertSame($a->getCacheKey(), $b->getCacheKey());
49 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'search_query' => 'anything']);
50 $this->assertSame($a->getCacheKey(), $b->getCacheKey());
60 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'namespace' => 'wiki']);
61 $this->assertNotSame($a->getCacheKey(), $b->getCacheKey());
67 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'items' => 20]);
68 $this->assertNotSame($a->getCacheKey(), $b->getCacheKey());
74 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'show_minor' => true]);
75 $this->assertNotSame($a->getCacheKey(), $b->getCacheKey());
81 $b = new FeedCreatorOptions(['feed_mode' => 'recent', 'content_type' => 'both']);
82 $this->assertNotSame($a->getCacheKey(), $b->getCacheKey());
92 $this->assertSame(1, $options->options['items']);
99 $this->assertSame($conf['recent'] * 5, $options->options['items']);
105 $this->assertSame(10, $options->options['items']);