Repository: maven-surefire
Updated Branches:
  refs/heads/master 86396d896 -> d6f38165d


Obsolete class should be deleted in previous commit.


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/d6f38165
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/d6f38165
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/d6f38165

Branch: refs/heads/master
Commit: d6f38165dd5965014f84028d0b5e6ece24e3ebe4
Parents: 86396d8
Author: Tibor17 <tibo...@lycos.com>
Authored: Fri May 5 18:59:10 2017 +0200
Committer: Tibor17 <tibo...@lycos.com>
Committed: Fri May 5 18:59:10 2017 +0200

----------------------------------------------------------------------
 .../surefire/util/internal/ByteBufferTest.java  | 48 --------------------
 1 file changed, 48 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/d6f38165/surefire-api/src/test/java/org/apache/maven/surefire/util/internal/ByteBufferTest.java
----------------------------------------------------------------------
diff --git 
a/surefire-api/src/test/java/org/apache/maven/surefire/util/internal/ByteBufferTest.java
 
b/surefire-api/src/test/java/org/apache/maven/surefire/util/internal/ByteBufferTest.java
deleted file mode 100644
index 9728330..0000000
--- 
a/surefire-api/src/test/java/org/apache/maven/surefire/util/internal/ByteBufferTest.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package org.apache.maven.surefire.util.internal;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import junit.framework.TestCase;
-
-/**
- * @author Kristian Rosenvold
- */
-public class ByteBufferTest
-    extends TestCase
-{
-    public void testAppend()
-        throws Exception
-    {
-        ByteBuffer byteBuffer = new ByteBuffer( 30 );
-        byteBuffer.append( 'C' );
-        byteBuffer.append( (byte) 'D' );
-        assertEquals( "CD", byteBuffer.toString() );
-
-    }
-
-
-    public void testJoin()
-    {
-        byte[] b1 = "ABC".getBytes();
-        byte[] b2 = "DE".getBytes();
-        final byte[] join = ByteBuffer.join( b1, 0, 3, b2, 0, 2 );
-        assertEquals( 5, join.length );
-    }
-}

Reply via email to