assertIsArray( Components::$months ); $this->assertIsArray( Components::$monthsShort ); } public function testGet() { $instance = new Components( [ 'foo' => 'bar' ] ); $this->assertFalse( $instance->get( 'bar' ) ); $this->assertEquals( 'bar', $instance->get( 'foo' ) ); } }