blob: c20379468bb5d727d451c4ba118ee426c1367a56 [file] [log] [blame]
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.graphics.cts;
import static org.junit.Assert.assertEquals;
import android.graphics.Paint;
import android.graphics.Paint.Join;
import android.support.test.filters.SmallTest;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
@SmallTest
@RunWith(AndroidJUnit4.class)
public class Paint_JoinTest {
@Test
public void testValueOf() {
assertEquals(Join.BEVEL, Join.valueOf("BEVEL"));
assertEquals(Join.MITER, Join.valueOf("MITER"));
assertEquals(Join.ROUND, Join.valueOf("ROUND"));
}
@Test
public void testValues() {
// set the actual value
Join[] actual = Join.values();
assertEquals(3, actual.length);
assertEquals(Join.MITER, actual[0]);
assertEquals(Join.ROUND, actual[1]);
assertEquals(Join.BEVEL, actual[2]);
// Here we use Join as the param of setStrokeJoin
// and get the setting result by getStrokeJoin
Paint p = new Paint();
p.setStrokeJoin(actual[0]);
assertEquals(Join.MITER, p.getStrokeJoin());
p.setStrokeJoin(actual[1]);
assertEquals(Join.ROUND, p.getStrokeJoin());
p.setStrokeJoin(actual[2]);
assertEquals(Join.BEVEL, p.getStrokeJoin());
}
}