ExampleOhosTest.java 429 字节
Newer Older
C
Catherine_MK 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.example.datadriver;

import ohos.aafwk.ability.delegation.AbilityDelegatorRegistry;
import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class ExampleOhosTest {
    @Test
    public void testBundleName() {
        final String actualBundleName = AbilityDelegatorRegistry.getArguments().getTestBundleName();
        assertEquals("com.example.datadriver", actualBundleName);
    }
}