This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
public void testFacebook_correctData_enterNotificationCenter() throws Exception { | |
final UiDevice mDevice = | |
UiDevice.getInstance(InstrumentationRegistry.getInstrumentation()); | |
final int timeOut = 1000 * 60; | |
// Login Activity | |
onView(withId(R.id.btnFacebookLogin)).perform(click()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package HeapSort; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.Scanner; | |
public class MainHeap { | |
public static void main(String[]args) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.univdhaka.iit.prefix; | |
public class Calculator { | |
public Calculator () { | |
} | |
public int addition (int number1, int number2){ | |
return (number1+number2); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.univdhaka.iit.prefix; | |
import java.util.Stack; | |
import java.util.Vector; | |
public class AdvancedCalculator extends Calculator{ | |
private String temp; | |
private String mainInputString ; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.univdhaka.iit.prefix; | |
import java.util.*; | |
public class MainClass { | |
public static void main(String args[]) { | |
Scanner input = new Scanner(System.in); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.univdhaka.iit.calculator; | |
public class BasicCalculator { | |
/** | |
* | |
* Receives infinite parameter | |
* | |
**/ | |
public double addition(int...a) { | |
double sum=0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package edu.univdhaka.iit.calculator; | |
import java.util.Scanner; | |
public class MainApp { | |
@SuppressWarnings("resource") | |
public static void main(String[] args){ | |
BasicCalculator basicCalculator = new BasicCalculator(); |