| 153 | /** |
| 154 | * @ticket 35961 |
| 155 | */ |
| 156 | function test_n_noop() { |
| 157 | $array = array( 0 => '%s post', |
| 158 | 1 => '%s posts', |
| 159 | 'singular' => '%s post', |
| 160 | 'plural' => '%s posts', |
| 161 | 'context' => null, |
| 162 | 'domain' => 'text-domain' |
| 163 | ); |
| 164 | $this->assertEquals( $array, _n_noop( '%s post', '%s posts', 'text-domain' ) ); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * @ticket 35961 |
| 169 | */ |
| 170 | function test_nx_noop() { |
| 171 | $array = array( 0 => '%s post', |
| 172 | 1 => '%s posts', |
| 173 | 2 => 'context', |
| 174 | 'singular' => '%s post', |
| 175 | 'plural' => '%s posts', |
| 176 | 'context' => 'context', |
| 177 | 'domain' => 'text-domain' |
| 178 | ); |
| 179 | $this->assertEquals( $array, _nx_noop( '%s post', '%s posts', 'context', 'text-domain' ) ); |
| 180 | } |
| 181 | |