Skip to content

Instantly share code, notes, and snippets.

@julesfern
Created August 19, 2010 14:38
Show Gist options
  • Save julesfern/538034 to your computer and use it in GitHub Desktop.
Save julesfern/538034 to your computer and use it in GitHub Desktop.
package org.stylekit.spec.tests.css.value
{
import flexunit.framework.Assert;
import flexunit.framework.AsyncTestHelper;
import org.flexunit.async.Async;
import org.stylekit.css.value.SizeValue;
public class SizeValueTestCase {
protected var _result:SizeValue;
[Before]
public function setUp():void
{
}
[After]
public function tearDown():void
{
}
[Test(description="Ensures that a string value may be parsed into a valid SizeValue object.")]
public function stringParsesCorrectly():void
{
}
[Test(description="Ensures that a string value may be identified as valid for parsing as a SizeValue.")]
public function stringIdentifiesCorrectly():void
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment