Go\Instrument\Transformer\WeavingTransformerTest::testMultipleNamespacesInOneFile PHP Method

testMultipleNamespacesInOneFile() public method

It's a caution check that multiple namespaces are not yet supported
    public function testMultipleNamespacesInOneFile()
    {
        $metadata = $this->loadTest('multiple-ns');
        $this->transformer->transform($metadata);
        $actual = $this->normalizeWhitespaces($metadata->source);
        $expected = $this->normalizeWhitespaces($this->loadTest('multiple-ns-woven')->source);
        $this->assertEquals($expected, $actual);
    }