Example usage for com.liferay.portal.kernel.test.util CompanyTestUtil addCompany

List of usage examples for com.liferay.portal.kernel.test.util CompanyTestUtil addCompany

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.test.util CompanyTestUtil addCompany.

Prototype

public static Company addCompany(String name) throws Exception 

Source Link

Usage

From source file:com.liferay.trash.service.test.TrashEntryLocalServiceCheckEntriesTest.java

License:Open Source License

protected long createCompany() throws Exception {
    Company company = CompanyTestUtil.addCompany(RandomTestUtil.randomString());

    _companies.add(company);/*  www.j a va2s  .  c  o  m*/

    return company.getCompanyId();
}