Added dependency plugins

This commit is contained in:
Moris Zen
2018-06-25 00:00:37 +02:00
parent 720a1c31a4
commit f069f6782f
698 changed files with 289637 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
<?php
class WPGraphQLAccessFunctionsTest extends \Codeception\TestCase\WPTestCase {
public function setUp() {
parent::setUp();
}
public function tearDown() {
parent::tearDown();
}
/**
* Tests the access function that is available to format strings to GraphQL friendly format
*/
public function testGraphQLFormatFieldName() {
$actual = graphql_format_field_name( 'This is some field name' );
$expected = 'thisIsSomeFieldName';
$this->assertEquals( $expected, $actual );
}
}