top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Can someone share logs for IRAT handover, failure case and s1 handover?

+1 vote
151 views
Can someone share logs for IRAT handover, failure case and s1 handover?
posted Dec 8, 2015 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+4 votes

My email id is "vimal_bhumca06@yahoo.co.in". I am looking for successful S1-handover (with MME and SGW relocation) logs.

Thanks in advance.

+1 vote

Can someone help me to build Failure Test case for these Functions..

public int sumFromTo(int[] arr, int from, int to) { // 1 Case
        if (arr == null || arr.length == 0 || to > arr.length - 1) {
            throw new IllegalArgumentException();
        }
        int sum = 0;
        for (int i = from; i <= to; i++) {
            sum += arr[i];
        }
        return sum;
    }

    // Second Function
    public String replaceCharacter(String word, char oldchar, char newchar) {
        if (word == null) {
            throw new IllegalArgumentException(); // 2 cases
        }
        int i = 0;
        String s = new String();
        do {
            if (word.toLowerCase().charAt(i) == oldchar) {
                s += newchar;
            } else {
                s += word.charAt(i);
            }
            i++;
        } while (i < word.length());
        return s;
    }

    // Third Function
    public boolean isPrime(int num) { // 3 cases
        for (int i = 2; i < 10; i++) {
            if (num % i == 0 && i != num) {
                return false;
            }
        }
        return true;
    }
+1 vote

In case of S1 Handover, we have two path for data forwarding "direct" or "Indirect". How we can decide to choose direct data forwarding? Is it based on X2 Connection ( UP or Down ) OR based on any other configuration parameter?

...