This file contains 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 de.danoeh.antennapod.model.download; | |
import org.junit.Assert; | |
import org.junit.Test; | |
public class DownloadErrorTest { | |
@Test | |
public void test_DownloadError_retorna_codigo_sucesso() { | |
var successCode = DownloadError.SUCCESS.getCode(); |
This file contains 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 de.danoeh.antennapod.event; | |
import org.junit.Assert; | |
import org.junit.Test; | |
import java.util.List; | |
import de.danoeh.antennapod.model.feed.Feed; | |
public class FeedListUpdateEventTest { |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define CHAR_LIMIT 30 | |
typedef struct consumo | |
{ | |
char nome[CHAR_LIMIT]; | |
float tempo; |
This file contains 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 HelloWorld { | |
public static void main(String[] args) { | |
System.out.println("Hello, World!!!"); | |
} | |
} |
This file contains 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
String.prototype.equals = function(str) {return (this.toString() === str) ? true : false} | |
function igual(str1, str2) { | |
return str1.equals(str2); | |
} |
This file contains 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
/* ************************************************************************** */ | |
/* */ | |
/* ::: :::::::: */ | |
/* files.c :+: :+: :+: */ | |
/* +:+ +:+ +:+ */ | |
/* By: mathferr <[email protected]> +#+ +:+ +#+ */ | |
/* +#+#+#+#+#+ +#+ */ | |
/* Created: 2020/03/03 02:12:09 by mathferr #+# #+# */ | |
/* Updated: 2020/03/03 02:12:10 by mathferr ### ########.fr */ | |
/* */ |
This file contains 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
root = true | |
[*] | |
indent_style = tab | |
indent_size = 4 | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
This file contains 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
/* | |
** Simples calculadora de imc feita com react-native | |
*/ | |
import React, { Component } from "react"; | |
import { | |
Platform, | |
StyleSheet, | |
TextInput, | |
Text, | |
TouchableOpacity, |