Skip to content

Commit

Permalink
test to ensure instance of proper class
Browse files Browse the repository at this point in the history
  • Loading branch information
danalloway committed May 13, 2015
1 parent 497ce71 commit 2c84453
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/LateStaticClientTest.php
@@ -0,0 +1,15 @@
<?php

namespace League\StatsD\Test;

class LateStaticClientTest extends TestCase
{

public function testStaticInstance()
{
$client = new LateStaticClient();
$instance = LateStaticClient::instance();
$this->assertTrue($instance instanceof LateStaticClient);
}

}

0 comments on commit 2c84453

Please sign in to comment.