aboutsummaryrefslogtreecommitdiff
path: root/tests/iketests
diff options
context:
space:
mode:
authorCody Kesting <ckesting@google.com>2019-10-01 18:18:51 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-10-01 18:18:51 +0000
commit6a3caa7a0388aa56022e9562d97d71c7b456d6a7 (patch)
treeaf6072a15544f5e3d755727ef68feeb232dc9e9f /tests/iketests
parent3a5fd2aea45267a05da2785a3ff23a97c2f983d1 (diff)
parent69c4b535ea1fcd7bc41e6c3af0b9b49ba36f1d1a (diff)
downloadike-6a3caa7a0388aa56022e9562d97d71c7b456d6a7.tar.gz
Merge "Implement AwaitingEapFailureState for EAP MSCHAPv2."
Diffstat (limited to 'tests/iketests')
-rw-r--r--tests/iketests/src/java/com/android/ike/eap/statemachine/EapMsChapV2AwaitingEapFailureStateTest.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/iketests/src/java/com/android/ike/eap/statemachine/EapMsChapV2AwaitingEapFailureStateTest.java b/tests/iketests/src/java/com/android/ike/eap/statemachine/EapMsChapV2AwaitingEapFailureStateTest.java
new file mode 100644
index 00000000..f9140007
--- /dev/null
+++ b/tests/iketests/src/java/com/android/ike/eap/statemachine/EapMsChapV2AwaitingEapFailureStateTest.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.ike.eap.statemachine;
+
+import org.junit.Before;
+
+public class EapMsChapV2AwaitingEapFailureStateTest extends EapMsChapV2StateTest {
+ @Before
+ @Override
+ public void setUp() {
+ super.setUp();
+
+ mStateMachine.transitionTo(mStateMachine.new AwaitingEapFailureState());
+ }
+}