1
0
Fork 0
firefox/third_party/chromium/build/android/java/test/IncrementalJavacTest.java
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

32 lines
971 B
Java

// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package test;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.annotation.Config;
import org.chromium.base.test.BaseRobolectricTestRunner;
/**
* Checks that build picked up changes to
* {@link NoSignatureChangeIncrementalJavacTestHelper#foo()}.
*/
@RunWith(BaseRobolectricTestRunner.class)
@Config(manifest = Config.NONE)
public final class IncrementalJavacTest {
@Test
public void testNoSignatureChange() {
NoSignatureChangeIncrementalJavacTestHelper helper =
new NoSignatureChangeIncrementalJavacTestHelper();
// #foo() should return updated value.
assertEquals("foo2", helper.foo());
// #bar() should not crash.
assertEquals("bar", helper.bar());
}
}