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
Activities | |
Basic Activities | |
Simple activities which are good for less-experienced groups. | |
Ping pong | |
Navigator-driver | |
Missing Tool Activities |
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
1) Using SQL-like Expression | |
var iNames = from i in employees | |
select i.name; | |
2) Using Lambda Expression | |
var iNames = employees.Select<Employee, string>(r => r.name); |
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
[SetUp] | |
public static void Setup() | |
{ | |
MockRepository = new MockRepository(); | |
Repositorio = MockRepository.DynamicMock<ILanceRepositorio>(); | |
Servico = new LanceServico(Repositorio); | |
} | |
[TestCase] | |
public static void Teste_Retornar_Todos() |
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
public class Factorial { | |
public static long declarativeFactorial(int n){ | |
assert n > 0 : "Argument must be greaten than 0"; | |
if (n == 1) | |
return 1; | |
else | |
return n * declarativeFactorial(n-1); | |
} | |
NewerOlder