blob: 890403b7031dd527e41905495a6fd898c347f8d3 [file] [log] [blame]
// Copyright 2018 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 org.chromium.chromecast.base;
import static org.hamcrest.Matchers.not;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.BlockJUnit4ClassRunner;
/**
* Tests for Unit.
*/
@RunWith(BlockJUnit4ClassRunner.class)
public class UnitTest {
@Test
public void testUnitIdentity() {
// Only one instance of Unit should ever exist.
assertTrue(Unit.unit() == Unit.unit());
}
@Test
public void testUnitEqualsItself() {
// Unit is equal to itself.
assertEquals(Unit.unit(), Unit.unit());
}
@Test
public void testUnitDoesNotEqualAnythingElse() {
// Unit is not equal to other arbitrary objects.
assertThat(Unit.unit(), not(new Object()));
}
}