Skip to content

Commit

Permalink
cmsdk: Add simple profile manager tests.
Browse files Browse the repository at this point in the history
Change-Id: I73af75d956eeef0a621c713806245b51bacdbc18
  • Loading branch information
Adnan Begovic committed Jul 15, 2015
1 parent 662628a commit 1f5ae92
Showing 1 changed file with 30 additions and 0 deletions.
@@ -0,0 +1,30 @@
package org.cyanogenmod.tests.profiles.unit;

import android.test.AndroidTestCase;
import android.test.suitebuilder.annotation.SmallTest;
import cyanogenmod.app.ProfileManager;
import cyanogenmod.app.IProfileManager;

/**
* Created by adnan on 7/15/15.
*/
public class ProfileManagerTest extends AndroidTestCase {
private ProfileManager mProfileManager;

@Override
protected void setUp() throws Exception {
super.setUp();
mProfileManager = ProfileManager.getInstance(mContext);
}

@SmallTest
public void testManagerExists() {
assertNotNull(mProfileManager);
}

@SmallTest
public void testManagerServiceIsAvailable() {
IProfileManager iProfileManager = mProfileManager.getService();
assertNotNull(iProfileManager);
}
}

0 comments on commit 1f5ae92

Please sign in to comment.