Skip to content
  • This project
    • Loading...
  • Sign in

Denis Volobuev / webnotifications

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • webnotifications
  • ..
  • burokrat
  • MyComponentTest.java
  • Denis Volobuev's avatar
    initial commit · 476c434c
    476c434c
    Denis Volobuev authored 2017-09-29 14:50:17 +0500
MyComponentTest.java 211 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
package com.burokrat;

import junit.framework.Assert;
import org.junit.Test;

// JUnit tests here
public class MyComponentTest {

	@Test
	public void thisAlwaysPasses() {
		Assert.assertEquals(true, true);
	}
}