Skip to content

Instantly share code, notes, and snippets.

@wayne-o
Created November 7, 2013 15:20
Show Gist options
  • Save wayne-o/7356349 to your computer and use it in GitHub Desktop.
Save wayne-o/7356349 to your computer and use it in GitHub Desktop.
test
<?php
include "../classes/mvc/models/apiClient/apiClient_AbstractWrapper.php";
include "../classes/mvc/models/EventProfileModel.php";
include "../../atsumi/classes/mvc/controllers/mvc_AbstractController.php";
include "../classes/mvc/controllers/AbstractController.php";
/**
* Created by JetBrains PhpStorm.
* User: wayne
* Date: 23/10/13
* Time: 12:22
* To change this template use File | Settings | File Templates.
*/
class EventProfileModelTest extends PHPUnit_Framework_TestCase {
public function test_Get()
{
$this->assertTrue(true);
$event = EventProfileModel::get($this->app->init_cookie, "wayne");
// $this->assertTrue($event != null);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment