diff options
author | Tor Norbye <tnorbye@google.com> | 2010-11-24 09:27:54 -0800 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2010-11-24 09:28:52 -0800 |
commit | ccabacfacfcc90e1725f0342b2e6d273d0bc744e (patch) | |
tree | e06a7bf81247d10e979583a53ce7369c9a4acb5f /eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/RelativeLayoutRuleTest.java | |
parent | 760c9781599d751ab375981a197177ffe1ab8d7d (diff) | |
download | sdk-ccabacfacfcc90e1725f0342b2e6d273d0bc744e.zip sdk-ccabacfacfcc90e1725f0342b2e6d273d0bc744e.tar.gz sdk-ccabacfacfcc90e1725f0342b2e6d273d0bc744e.tar.bz2 |
Unit test fixes
First, the AddonsListFetcherTest#testLoadSample_1 was failing on the
Mac, because the source code contained non-ASCII unicode characters,
and the encoding differs between Windows, Linux and Mac -- and on the
Mac the characters were garbage (not the intended Japanese
characters). Fixed by using unicode escape sequences to define the
expected output instead.
Second, rename the AbstractLayoutTest to LayoutTestBase; the test
runner (for plugins, not unit tests) was assuming this was a test case
(even though it's an abstract class!) so it was emitting a warning
about the class containing no test cases. This is simply a base class
for all the individual layout tests defining a bunch of useful
inherited shared behavior, so rename to avoid the warning.
Change-Id: I6e29316c5644db35051218aef8b99ac41ab0cda4
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/RelativeLayoutRuleTest.java')
-rw-r--r-- | eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/RelativeLayoutRuleTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/RelativeLayoutRuleTest.java b/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/RelativeLayoutRuleTest.java index cc47df1..0ebec70 100644 --- a/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/RelativeLayoutRuleTest.java +++ b/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/RelativeLayoutRuleTest.java @@ -24,7 +24,7 @@ import java.util.ArrayList; import java.util.List; /** Test the {@link RelativeLayoutRule} */ -public class RelativeLayoutRuleTest extends AbstractLayoutRuleTest { +public class RelativeLayoutRuleTest extends LayoutTestBase { // Utility for other tests protected INode dragInto(Rect dragBounds, Point dragPoint, Point secondDragPoint, int insertIndex, int currentIndex, String... graphicsFragments) { |